Check-in [1ce0ac53ef]
Not logged in
Overview

SHA1 Hash:1ce0ac53ef7c7e1f48fa63e4b5869a4f8c057103
Date: 2008-02-12 00:31:48
User: stephan
Comment:fixed a string memleak in baseline_zip_page()
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/zip.c from [0e35e8f120] to [8367a41493].

@@ -372,9 +372,10 @@
     @ Not found
     return;
   }
   if( nName>10 ) zName[10] = 0;
   zip_of_baseline(rid, &zip, zName);
+  free( zName );
   cgi_set_content(&zip);
   cgi_set_content_type("application/zip");
   cgi_reply();
 }