pike.git/
src/
interpret.c
Branch:
Tag:
Non-build tags
All tags
No tags
2017-03-06
2017-03-06 08:11:02 by Arne Goedeke <el@laramies.com>
8b331aeec1cbaa19d0eac4d220078383658e675c (
3
lines) (+
3
/-
0
)
[
Show
|
Annotate
]
Branch:
arne/faster_calls_again
Interpreter: handle PIKE_FRAME_SAVE_LOCALS in really_free_pike_frame
2018:
DO_IF_DEBUG( if(X->flags & PIKE_FRAME_MALLOCED_LOCALS) Pike_fatal("Pike frame is not supposed to have malloced locals here!\n"));
+
if(X->flags & PIKE_FRAME_SAVE_LOCALS)
+
free(X->save_locals_bitmask);
DO_IF_DMALLOC( X->current_program=0; X->context=0;