]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Fixed wrong buffer size calculation for resolver results.
authorAlexander Barton <alex@barton.de>
Sun, 30 May 2004 16:25:51 +0000 (16:25 +0000)
committerAlexander Barton <alex@barton.de>
Sun, 30 May 2004 16:25:51 +0000 (16:25 +0000)
src/ngircd/conn.c

index b2ad9a257195b8b580eda94de8a8f13b9e4a8a33..e5e59de7e9a6c8ebe275bdbae52feedb1b24eb3a 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: conn.c,v 1.136 2004/05/11 00:53:14 alex Exp $";
+static char UNUSED id[] = "$Id: conn.c,v 1.137 2004/05/30 16:25:51 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -1634,7 +1634,7 @@ Read_Resolver_Result( INT r_fd )
        assert( s != NULL );
 
        /* Read result from pipe */
-       len = read( r_fd, s->buffer + s->bufpos, sizeof( s->buffer ) - HOST_LEN - 1 );
+       len = read( r_fd, s->buffer + s->bufpos, sizeof( s->buffer ) - s->bufpos - 1 );
        if( len < 0 )
        {
                /* Error! */