Update of /cvsroot/pywin32/pywin32/win32/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32023
Modified Files:
win32lzmodule.cpp
Log Message:
Anal MAX_PATH->MAX_PATH+1 for size of buffer passed to the API.
Index: win32lzmodule.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/src/win32lzmodule.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** win32lzmodule.cpp 9 Feb 2001 07:35:57 -0000 1.3
--- win32lzmodule.cpp 1 Oct 2004 00:10:15 -0000 1.4
***************
*** 74,78 ****
PyGetExpandedName(PyObject *self, PyObject *args)
{
! char outName[_MAX_PATH];
char *nameIn;
if (!PyArg_ParseTuple(args, "s:GetExpandedName", &nameIn )) // @pyparm int|idControl||The Id of the control to be retrieved.
--- 74,78 ----
PyGetExpandedName(PyObject *self, PyObject *args)
{
! char outName[_MAX_PATH+1];
char *nameIn;
if (!PyArg_ParseTuple(args, "s:GetExpandedName", &nameIn )) // @pyparm int|idControl||The Id of the control to be retrieved.
|