commit | 61bb35f440773d5c67f4054c5148be299232cba3 | [log] [tgz] |
---|---|---|
author | Mark Hammond <mhammond@skippinet.com.au> | Wed Jan 29 22:38:29 2003 +0000 |
committer | Mark Hammond <mhammond@skippinet.com.au> | Wed Jan 29 22:38:29 2003 +0000 |
tree | 03cbbc447252b29beb495f5b48195115b3384515 | |
parent | ba884f3d221d7c8a74ca8a6799214b692a6135f5 [diff] |
Fix [ 583477 ] wrong dest size. Note this code is not used by the core on Win32, but in a block used only by Windows CE.
diff --git a/PC/getpathp.c b/PC/getpathp.c index ed0a755..d61d3ea 100644 --- a/PC/getpathp.c +++ b/PC/getpathp.c
@@ -321,7 +321,7 @@ if (retval) WideCharToMultiByte(CP_ACP, 0, dataBuf, -1, /* source */ - retval, dataSize+1, /* dest */ + retval, reqdSize+1, /* dest */ NULL, NULL); free(dataBuf); #else