From: wessels <> Date: Mon, 26 May 1997 10:20:40 +0000 (+0000) Subject: compiler X-Git-Tag: SQUID_3_0_PRE1~4969 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ccf2bc259c4b61c4f8f39e6024f9fa34c7884f22;p=thirdparty%2Fsquid.git compiler --- diff --git a/lib/rfc1738.c b/lib/rfc1738.c index d1bd68beea..57b7ff05f8 100644 --- a/lib/rfc1738.c +++ b/lib/rfc1738.c @@ -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); }