[pywin32-checkins] pywin32/com/win32comext/ifilter/src PyIFilter.cpp,1.5,1.6
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-03-02 02:25:11
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/ifilter/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31612 Modified Files: PyIFilter.cpp Log Message: Correct silly error in my mem leak fixes. Index: PyIFilter.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/ifilter/src/PyIFilter.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** PyIFilter.cpp 28 Feb 2005 01:08:18 -0000 1.5 --- PyIFilter.cpp 2 Mar 2005 02:25:02 -0000 1.6 *************** *** 112,116 **** HRESULT hr; ! if (nBufSize = 0) nBufSize = 8192; // 8k default --- 112,116 ---- HRESULT hr; ! if (nBufSize == 0) nBufSize = 8192; // 8k default |