Bug#385295: Intent to NMU

2006-09-26 Thread Ryszard Lach
On Tue, Sep 26, 2006 at 03:23:45PM +0200, Steinar H. Gunderson wrote:
> On Sun, Sep 24, 2006 at 02:15:57AM -0300, Margarita Manterola wrote:
> > 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.
> 
> I can't find this NMU anywhere -- did you forget to upload it?
> 

Apparently.

I'll upload the package today evening. Thanks for your time and sorry
for my delay.

R.

-- 
"First they ignore you. Then they laugh at you. Then they
fight you. Then you win." - Mohandas Gandhi.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#385295: Intent to NMU

2006-09-26 Thread Steinar H. Gunderson
On Sun, Sep 24, 2006 at 02:15:57AM -0300, Margarita Manterola wrote:
> 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.

I can't find this NMU anywhere -- did you forget to upload it?

/* Steinar */
-- 
Homepage: http://www.sesse.net/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#385295: Intent to NMU

2006-09-23 Thread Margarita Manterola
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);
 }