joes 2003/10/17 11:17:14
Modified: t params.c
Log:
Drop spurios free() of pool-allocated strings
Revision Changes Path
1.8 +0 -3 httpd-apreq-2/t/params.c
Index: params.c
===================================================================
RCS file: /home/cvs/httpd-apreq-2/t/params.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- params.c 17 Oct 2003 16:52:48 -0000 1.7
+++ params.c 17 Oct 2003 18:17:14 -0000 1.8
@@ -58,7 +58,6 @@
#include "apreq_params.h"
#include "apr_strings.h"
-
static apreq_request_t *r = NULL;
static void request_make(CuTest *tc)
@@ -108,8 +107,6 @@
apreq_unescape(s2);
CuAssertStrEquals(tc,"dandy >dons",s2);
- free(s2);
- free(s1);
}