From ccf2bc259c4b61c4f8f39e6024f9fa34c7884f22 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Mon, 26 May 1997 10:20:40 +0000 Subject: [PATCH] compiler --- lib/rfc1738.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } -- 2.47.2