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