[pywin32-checkins] pywin32/win32/src win32inet.i,1.7,1.8
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2008-04-07 20:02:27
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19463 Modified Files: win32inet.i Log Message: Fix memory leak in CommitUrlCacheEntry Index: win32inet.i =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32inet.i,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** win32inet.i 7 Apr 2008 00:08:39 -0000 1.7 --- win32inet.i 7 Apr 2008 20:02:29 -0000 1.8 *************** *** 1748,1751 **** --- 1748,1752 ---- PyWinObject_FreeTCHAR(LocalFileName); PyWinObject_FreeTCHAR(OriginalUrl); + PyWinObject_FreeTCHAR((TCHAR *)HeaderInfo); return ret; }; |