CVS: winex/files file.c,1.45,1.46
| Newsgroups | gmane.comp.emulators.winex.cvs |
|---|---|
| Message-ID | <[email protected]> |
Subject: winex/files file.c,1.45,1.46Update of /var/lib/cvsd/cvsroot/winex/files
In directory agravaine:/tmp/cvs-serv20581/files
Modified Files:
file.c
Log Message:
- fix buffer for GetTempFileNameW to handle full-length paths
Index: file.c
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/files/file.c,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- file.c 29 Mar 2007 14:10:08 -0000 1.45
+++ file.c 30 Mar 2007 20:42:23 -0000 1.46
@@ -1124,7 +1124,7 @@
LPWSTR buffer )
{
LPSTR patha,prefixa;
- char buffera[144];
+ char buffera[MAX_PATH];
UINT ret;
if (!path) return 0;