x2p/str.c was missing from list of changed files in change 466
Malcolm Beattie [Fri, 6 Feb 1998 17:19:52 +0000 (17:19 +0000)]
p4raw-id: //depot/perl@480

x2p/str.c

index ff2dd7c..b820a8d 100644 (file)
--- 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;