]> granicus.if.org Git - jq/commitdiff
Make comment consistent with code
authorNicolas Williams <nico@cryptonector.com>
Sat, 25 Feb 2017 20:24:43 +0000 (14:24 -0600)
committerNicolas Williams <nico@cryptonector.com>
Sun, 26 Feb 2017 00:51:09 +0000 (18:51 -0600)
src/util.c

index 7eefc666c403ee82ba5333d6cb1036051e9e7116..75de4e3cece31524fa87941da7c54950138820fa 100644 (file)
@@ -52,7 +52,7 @@ FILE *fopen(const char *fname, const char *mode) {
   MultiByteToWideChar(CP_UTF8, 0, fname, -1, wfname, sz);
 
   sz = sizeof(wchar_t) * MultiByteToWideChar(CP_UTF8, 0, mode, -1, NULL, 0);
-  wchar_t *wmode = alloca(sz); // +2 is not needed, but just in case
+  wchar_t *wmode = alloca(sz + 2); // +2 is not needed, but just in case
   MultiByteToWideChar(CP_UTF8, 0, mode, -1, wmode, sz);
   return _wfopen(wfname, wmode);
 }