diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-12 01:43:40 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-12 01:43:40 (GMT) |
commit | 6f5ff3f3eb7abc2f4750c1319b560f67faf546ac (patch) | |
tree | 1b84bed27afcf3a62f50a2a2a6dabe162327866a /Objects/structseq.c | |
parent | 2a899c8b767144e809418fd04f83e4e5789084cd (diff) | |
download | cpython-6f5ff3f3eb7abc2f4750c1319b560f67faf546ac.zip cpython-6f5ff3f3eb7abc2f4750c1319b560f67faf546ac.tar.gz cpython-6f5ff3f3eb7abc2f4750c1319b560f67faf546ac.tar.bz2 |
Klocwork made another run and found a bunch more problems.
This is the first batch of fixes that should be easy to verify based on context.
This fixes problem numbers: 220 (ast), 323-324 (symtable),
321-322 (structseq), 215 (array), 210 (hotshot), 182 (codecs), 209 (etree).
Diffstat (limited to 'Objects/structseq.c')
-rw-r--r-- | Objects/structseq.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Objects/structseq.c b/Objects/structseq.c index e074810..7ac2a1f 100644 --- a/Objects/structseq.c +++ b/Objects/structseq.c @@ -215,6 +215,8 @@ structseq_contains(PyStructSequence *obj, PyObject *o) PyObject *tup; int result; tup = make_tuple(obj); + if (!tup) + return -1; result = PySequence_Contains(tup, o); Py_DECREF(tup); return result; @@ -226,6 +228,8 @@ structseq_hash(PyObject *obj) PyObject *tup; long result; tup = make_tuple((PyStructSequence*) obj); + if (!tup) + return -1; result = PyObject_Hash(tup); Py_DECREF(tup); return result; |