summaryrefslogtreecommitdiff
path: root/Objects/frameobject.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-06-11 05:48:14 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-06-11 05:48:14 +0000
commit03256b6bd8646f1a6071bf6491adc6a9b26054a1 (patch)
treef111abb511f5b8501c8ffb70f8f69ba432a3f440 /Objects/frameobject.c
parent8269db02e5c4c6128c54ddb7f22be4ee1b5db18a (diff)
downloadcpython-03256b6bd8646f1a6071bf6491adc6a9b26054a1.tar.gz
f_code can't be NULL based on Frame_New and other code that derefs it.
So there doesn't seem to be much point to checking here.
Diffstat (limited to 'Objects/frameobject.c')
-rw-r--r--Objects/frameobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index fcb5e4e32c..06c3c7a950 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -425,7 +425,7 @@ frame_dealloc(PyFrameObject *f)
Py_CLEAR(f->f_exc_traceback);
co = f->f_code;
- if (co != NULL && co->co_zombieframe == NULL)
+ if (co->co_zombieframe == NULL)
co->co_zombieframe = f;
else if (numfree < MAXFREELIST) {
++numfree;
@@ -435,7 +435,7 @@ frame_dealloc(PyFrameObject *f)
else
PyObject_GC_Del(f);
- Py_XDECREF(co);
+ Py_DECREF(co);
Py_TRASHCAN_SAFE_END(f)
}