diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1993-08-03 15:11:36 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1993-08-03 15:11:36 (GMT) |
commit | f64992e95d3b87799d4a423d2d0c0047b177c56b (patch) | |
tree | 9dbebed108d638dba7f761dcd2d441c8419987e8 /Objects/frameobject.c | |
parent | d29eb6232cf7d71e5f5bffd70668b3e18835797a (diff) | |
download | cpython-f64992e95d3b87799d4a423d2d0c0047b177c56b.zip cpython-f64992e95d3b87799d4a423d2d0c0047b177c56b.tar.gz cpython-f64992e95d3b87799d4a423d2d0c0047b177c56b.tar.bz2 |
* clmodule.c (doParams): free PVbuffer in error condition.
* frameobject.c (newframeobject): initialize ob_type if taking entry
from the free list, since it is zeroed out when DEBUG is defined.
Diffstat (limited to 'Objects/frameobject.c')
-rw-r--r-- | Objects/frameobject.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/frameobject.c b/Objects/frameobject.c index 62a18e2..0b5e75c 100644 --- a/Objects/frameobject.c +++ b/Objects/frameobject.c @@ -137,6 +137,7 @@ newframeobject(back, code, globals, locals, owner, nvalues, nblocks) else { f = free_list; free_list = free_list->f_back; + f->ob_type = &Frametype; NEWREF(f); } if (f != NULL) { |