From: Malcolm Beattie Date: Fri, 6 Feb 1998 17:19:52 +0000 (+0000) Subject: x2p/str.c was missing from list of changed files in change 466 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5e212cb5841accd06262f40bb6be04cdf60c87d6;p=p5sagit%2Fp5-mst-13.2.git x2p/str.c was missing from list of changed files in change 466 p4raw-id: //depot/perl@480 --- diff --git a/x2p/str.c b/x2p/str.c index ff2dd7c..b820a8d 100644 --- a/x2p/str.c +++ b/x2p/str.c @@ -216,7 +216,7 @@ str_grow(register STR *str, int len) void str_replace(register STR *str, register STR *nstr) { - Safefree(str->str_ptr); + safefree(str->str_ptr); str->str_ptr = nstr->str_ptr; str->str_len = nstr->str_len; str->str_cur = nstr->str_cur;