
mjc at hyperreal
Apr 16, 1996, 12:54 AM
Post #1 of 1
(58 views)
Permalink
|
|
cvs commit: apache/src http_protocol.c
|
|
mjc 96/04/16 00:54:09 Modified: src http_protocol.c Log: Submitted by: Alexei Kosut Fixed bug in rvputs() - corrected argument to va_end() Revision Changes Path 1.18 +2 -2 apache/src/http_protocol.c Index: http_protocol.c =================================================================== RCS file: /export/home/cvs/apache/src/http_protocol.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C3 -r1.17 -r1.18 *** http_protocol.c 1996/04/03 08:19:49 1.17 --- http_protocol.c 1996/04/16 07:54:07 1.18 *************** *** 762,773 **** i = bwrite(fb, x, j); if (i != j) { ! va_end(v); return -1; } k += i; } ! va_end(v); return k; } --- 762,773 ---- i = bwrite(fb, x, j); if (i != j) { ! va_end(args); return -1; } k += i; } ! va_end(args); return k; }
|