MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

typo in patchfile

+3 -2
+3 -2
vendor/packagefiles/patches/wasm-micro-runtime-windows.patch
··· 18 18 index ef6ca15..b893f9e 100644 19 19 --- a/core/shared/platform/windows/win_file.c 20 20 +++ b/core/shared/platform/windows/win_file.c 21 - @@ -1295,12 +1295,12 @@ os_realpath(const char *path, char *resolved_path) 21 + @@ -1295,20 +1295,20 @@ os_realpath(const char *path, char *resolved_path) 22 22 23 23 if (wbufsize >= 4 && wbuf[0] == L'\\' && wbuf[1] == L'?' 24 24 && wbuf[2] == L'?' && wbuf[3] == L'\\') { ··· 34 34 wbuf += 4; 35 35 wbufsize -= 4; 36 36 } 37 - @@ -1310,7 +1310,7 @@ os_realpath(const char *path, char *resolved_path) 37 + else if (wbufsize >= 8 && (wbuf[4] == L'U' || wbuf[4] == L'u') 38 + && (wbuf[5] == L'N' || wbuf[5] == L'n') 38 39 && (wbuf[6] == L'C' || wbuf[6] == L'c') 39 40 && wbuf[7] == L'\\') 40 41 {