From: Gonzalo A. <ga...@us...> - 2009-01-13 17:21:16
|
Update of /cvsroot/mod-c/ehtml/src In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv18542/src Modified Files: EHTMLApplication.cpp Log Message: Fixed memleak. Index: EHTMLApplication.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/EHTMLApplication.cpp,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** EHTMLApplication.cpp 6 Dec 2006 15:30:01 -0000 1.21 --- EHTMLApplication.cpp 13 Jan 2009 17:21:06 -0000 1.22 *************** *** 70,73 **** --- 70,76 ---- APR_DEALLOCATE( RequestContext, Request, Request ); APR_DEALLOCATE( RequestContext, Response, Response ); + + if (session) + delete session; } |