projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
9a08584
)
Fix compiling with -DPURIFY
Nicholas Clark [Fri, 17 Jun 2005 19:37:56 +0000 (19:37 +0000)]
p4raw-id: //depot/perl@24891
sv.c
patch
|
blob
|
blame
|
history
diff --git
a/sv.c
b/sv.c
index
66094a2
..
e423cbb
100644
(file)
--- a/
sv.c
+++ b/
sv.c
@@
-1573,11
+1573,11
@@
Perl_sv_upgrade(pTHX_ register SV *sv, U32 mt)
if (old_body_arena) {
#ifdef PURIFY
- my_safefree(old_body)
+ my_safefree(old_body);
#else
S_del_body(aTHX_ old_body, old_body_arena, old_body_offset);
#endif
-}
+ }
}
/*