commit | f6d5a38dd6f3156417e0ea8de963d5911ba1c7b9 | [log] [tgz] |
---|---|---|
author | Mark Hammond <[email protected]> | Wed Jan 29 22:38:29 2003 +0000 |
committer | Mark Hammond <[email protected]> | Wed Jan 29 22:38:29 2003 +0000 |
tree | 5922bdb4c3e19d1b41e0d5653f85c8c513841d16 | |
parent | d89dc09bf647612370ded1543ba1bed5b7ad41ed [diff] [blame] |
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