]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
compiler
authorwessels <>
Mon, 26 May 1997 10:20:40 +0000 (10:20 +0000)
committerwessels <>
Mon, 26 May 1997 10:20:40 +0000 (10:20 +0000)
lib/rfc1738.c

index d1bd68beea4eb1297a4be9a1fd54a90bfb76770e..57b7ff05f8d5bae1ee076c4b5f2a7d45b1e39859 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rfc1738.c,v 1.9 1997/05/26 04:04:53 wessels Exp $
+ * $Id: rfc1738.c,v 1.10 1997/05/26 04:20:40 wessels Exp $
  *
  * DEBUG: 
  * AUTHOR: Harvest Derived
@@ -153,7 +153,7 @@ rfc1738_escape(const char *url)
     int i, do_escape;
 
     if (buf == NULL || strlen(url) * 3 > bufsize) {
-       safe_free(buf);
+       xfree(buf);
        bufsize = strlen(url) * 3 + 1;
        buf = xcalloc (bufsize, 1);
     }