← Back to team overview

zorba-coders team mailing list archive

[Merge] lp:~paul-lucas/zorba/bug-950456 into lp:zorba

 

Paul J. Lucas has proposed merging lp:~paul-lucas/zorba/bug-950456 into lp:zorba.

Requested reviews:
  Paul J. Lucas (paul-lucas)
Related bugs:
  Bug #950456 in Zorba: "Memory leak in http-client module"
  https://bugs.launchpad.net/zorba/+bug/950456

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-950456/+merge/96693

Added delete theSerStream;
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-950456/+merge/96693
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'modules/com/zorba-xquery/www/modules/http-client.xq.src/http_request_handler.cpp'
--- modules/com/zorba-xquery/www/modules/http-client.xq.src/http_request_handler.cpp	2011-06-14 14:21:49 +0000
+++ modules/com/zorba-xquery/www/modules/http-client.xq.src/http_request_handler.cpp	2012-03-09 01:04:20 +0000
@@ -39,6 +39,7 @@
       theSerStream(NULL),
       thePost(NULL),
       theLast(NULL),
+      theLastSerializerOptions(NULL),
       theIsHeadRequest(false)
   {
     theHeaderLists.push_back(NULL);
@@ -57,6 +58,7 @@
     if (thePost != NULL) {
       curl_formfree(thePost);
     }
+    delete theSerStream;
   }
 
   void HttpRequestHandler::begin()
@@ -288,3 +290,4 @@
 
 } // namespace http_client
 } // namespace zorba
+/* vim:set et sw=2 ts=2: */


Follow ups