12 lines
363 B
Diff
12 lines
363 B
Diff
--- qtwebengine/src/3rdparty/chromium/third_party/nasm/nasmlib/realpath.c 2019-09-23 14:24:20.000000000 +0200
|
|
+++ - 2019-10-11 06:27:28.450329986 +0200
|
|
@@ -57,7 +57,7 @@
|
|
*/
|
|
char *nasm_realpath(const char *rel_path)
|
|
{
|
|
- char *rp = canonicalize_file_name(rel_path);
|
|
+ char *rp = realpath(rel_path, NULL);
|
|
return rp ? rp : nasm_strdup(rel_path);
|
|
}
|
|
|