manoj 99/10/25 14:00:33
Modified: src/os/unix iol_socket.c
Log:
We didn't zero out nbytes in one case of error; fix that.
Revision Changes Path
1.7 +1 -0 apache-2.0/src/os/unix/iol_socket.c
Index: iol_socket.c
===================================================================
RCS file: /home/cvs/apache-2.0/src/os/unix/iol_socket.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -u -r1.6 -r1.7
--- iol_socket.c 1999/10/20 19:38:27 1.6
+++ iol_socket.c 1999/10/25 21:00:27 1.7
@@ -157,6 +157,7 @@
*nbytes = rv; \
return APR_SUCCESS; \
} \
+ *nbytes = 0; \
return errno; \
\
} \