diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-14 17:34:09 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-14 17:34:09 (GMT) |
commit | 47c8ede0b809980830818caa1e4957743eb25b3f (patch) | |
tree | 3229a872d85c3896d245faa558742a81c9c5ce07 /Modules | |
parent | 959f318af38040656139aeee71b68cadf4cd70c2 (diff) | |
download | cpython-47c8ede0b809980830818caa1e4957743eb25b3f.zip cpython-47c8ede0b809980830818caa1e4957743eb25b3f.tar.gz cpython-47c8ede0b809980830818caa1e4957743eb25b3f.tar.bz2 |
Merged revisions 77499 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77499 | antoine.pitrou | 2010-01-14 18:25:24 +0100 (jeu., 14 janv. 2010) | 4 lines
Issue #3299: Fix possible crash in the _sre module when given bad
argument values in debug mode. Patch by Victor Stinner.
........
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_sre.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Modules/_sre.c b/Modules/_sre.c index 1aea53b..731b13d 100644 --- a/Modules/_sre.c +++ b/Modules/_sre.c @@ -2684,6 +2684,10 @@ _compile(PyObject* self_, PyObject* args) self = PyObject_NEW_VAR(PatternObject, &Pattern_Type, n); if (!self) return NULL; + self->weakreflist = NULL; + self->pattern = NULL; + self->groupindex = NULL; + self->indexgroup = NULL; self->codesize = n; @@ -2700,7 +2704,7 @@ _compile(PyObject* self_, PyObject* args) } if (PyErr_Occurred()) { - PyObject_DEL(self); + Py_DECREF(self); return NULL; } @@ -3718,7 +3722,7 @@ static void scanner_dealloc(ScannerObject* self) { state_fini(&self->state); - Py_DECREF(self->pattern); + Py_XDECREF(self->pattern); PyObject_DEL(self); } @@ -3840,10 +3844,11 @@ pattern_scanner(PatternObject* pattern, PyObject* args) self = PyObject_NEW(ScannerObject, &Scanner_Type); if (!self) return NULL; + self->pattern = NULL; string = state_init(&self->state, pattern, string, start, end); if (!string) { - PyObject_DEL(self); + Py_DECREF(self); return NULL; } |