Tags 385925 + pending
Thanks

I have tested the patches provided by Michael Ablassmeier and Christian
Aichinger, and I have confirmed that applying both these patches together
fixes the problem.

I'm attaching the full interdiff output of the upload I'm about to do.  As
you can see, it's just the combination of the patches and the changelog
entry.

I'll be uploading the NMU directly, as directed by the 0-day NMU policy.

-- 
Love,
        Marga.
diff -u siege-2.65/debian/changelog siege-2.65/debian/changelog
--- siege-2.65/debian/changelog
+++ siege-2.65/debian/changelog
@@ -1,3 +1,11 @@
+siege (2.65-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload to fix a Segmentation Fault.
+  * Applied patch provided by Christian Aichinger and Michael Ablassmeier.
+    (Closes: #385295)
+
+ -- Margarita Manterola <[EMAIL PROTECTED]>  Sun, 24 Sep 2006 01:54:48 -0300
+
 siege (2.65-2) unstable; urgency=low
 
   * siege2csv.pl renamed to siege2csv
diff -u siege-2.65/src/http.c siege-2.65/src/http.c
--- siege-2.65/src/http.c
+++ siege-2.65/src/http.c
@@ -292,7 +292,7 @@
   
   while(TRUE){
     x = 0;
-    memset(&line, 0, sizeof(line));
+    memset(line, 0, len);
     while((n = socket_read(C, &c, 1)) == 1){
       if(x >= len){
         len += 2048;
only in patch2:
unchanged:
--- siege-2.65.orig/src/url.c
+++ siege-2.65/src/url.c
@@ -361,7 +361,6 @@
     (U->protocol==HTTP)?"http://":"https://";, U->hostname, U->port, U->pathname
   );
 
-  xfree(tmp);
   return(U);
 }
 

Reply via email to