summaryrefslogtreecommitdiff
path: root/Objects/classobject.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-08-19 04:19:14 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-08-19 04:19:14 +0000
commit3ba24783baf7ed9973c59f79c1a04bda5ac2b3dd (patch)
tree7027250cd36393d85f863f45598c7e2dbb87e030 /Objects/classobject.c
parent03ee62c352e66de6070e38d3e3cfc869b6a0a4e1 (diff)
downloadcpython-git-3ba24783baf7ed9973c59f79c1a04bda5ac2b3dd.tar.gz
Move initialization of interned strings to before allocating the
object so we don't leak op. (Fixes an earlier patch to this code) Klockwork #350
Diffstat (limited to 'Objects/classobject.c')
-rw-r--r--Objects/classobject.c26
1 files changed, 15 insertions, 11 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c
index b79f06e9cb..e739cc6141 100644
--- a/Objects/classobject.c
+++ b/Objects/classobject.c
@@ -91,8 +91,22 @@ PyClass_New(PyObject *bases, PyObject *dict, PyObject *name)
}
Py_INCREF(bases);
}
+
+ if (getattrstr == NULL) {
+ getattrstr = PyString_InternFromString("__getattr__");
+ if (getattrstr == NULL)
+ goto alloc_error;
+ setattrstr = PyString_InternFromString("__setattr__");
+ if (setattrstr == NULL)
+ goto alloc_error;
+ delattrstr = PyString_InternFromString("__delattr__");
+ if (delattrstr == NULL)
+ goto alloc_error;
+ }
+
op = PyObject_GC_New(PyClassObject, &PyClass_Type);
if (op == NULL) {
+alloc_error:
Py_DECREF(bases);
return NULL;
}
@@ -101,17 +115,7 @@ PyClass_New(PyObject *bases, PyObject *dict, PyObject *name)
op->cl_dict = dict;
Py_XINCREF(name);
op->cl_name = name;
- if (getattrstr == NULL) {
- getattrstr = PyString_InternFromString("__getattr__");
- if (getattrstr == NULL)
- return NULL;
- setattrstr = PyString_InternFromString("__setattr__");
- if (setattrstr == NULL)
- return NULL;
- delattrstr = PyString_InternFromString("__delattr__");
- if (delattrstr == NULL)
- return NULL;
- }
+
op->cl_getattr = class_lookup(op, getattrstr, &dummy);
op->cl_setattr = class_lookup(op, setattrstr, &dummy);
op->cl_delattr = class_lookup(op, delattrstr, &dummy);