From: Guido van Rossum Date: Mon, 20 Jan 1997 04:29:16 +0000 (+0000) Subject: Bugfix: remove ref to fast before it's defined. X-Git-Tag: v1.5a1~461 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3bb63a8dbe19592641330a8f1e12bec5dfd147d2;p=thirdparty%2FPython%2Fcpython.git Bugfix: remove ref to fast before it's defined. --- diff --git a/Objects/frameobject.c b/Objects/frameobject.c index 281445558b2e..79757e9583aa 100644 --- a/Objects/frameobject.c +++ b/Objects/frameobject.c @@ -307,7 +307,7 @@ locals_2_fast(f, clear) return; locals = f->f_locals; map = f->f_code->co_varnames; - if (locals == NULL || fast == NULL || f->f_code->co_nlocals == 0) + if (locals == NULL || f->f_code->co_nlocals == 0) return; if (!is_dictobject(locals) || !is_tupleobject(map)) return;