summaryrefslogtreecommitdiff
path: root/hv.c
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>1998-07-19 17:55:22 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>1998-07-19 17:55:22 +0000
commit4a33f861d7306c2a47424e9dc3b9646bcaddec90 (patch)
tree7b2ec86c8737c1317fde395e756bb3843faa02cb /hv.c
parent84fee439e17f74d72fd55282112c02bc24f1cad2 (diff)
downloadperl-4a33f861d7306c2a47424e9dc3b9646bcaddec90.tar.gz
PL_ for perl's malloc
p4raw-id: //depot/ansiperl@1569
Diffstat (limited to 'hv.c')
-rw-r--r--hv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hv.c b/hv.c
index 41ca2982aa..61e406ef1f 100644
--- a/hv.c
+++ b/hv.c
@@ -682,7 +682,7 @@ hsplit(HV *hv)
#if defined(STRANGE_MALLOC) || defined(MYMALLOC)
Renew(a, ARRAY_ALLOC_BYTES(newsize), char);
if (!a) {
- nomemok = FALSE;
+ PL_nomemok = FALSE;
return;
}
#else
@@ -757,7 +757,7 @@ hv_ksplit(HV *hv, IV newmax)
#if defined(STRANGE_MALLOC) || defined(MYMALLOC)
Renew(a, ARRAY_ALLOC_BYTES(newsize), char);
if (!a) {
- nomemok = FALSE;
+ PL_nomemok = FALSE;
return;
}
#else