Fixed leak in sys.flags initialization.

This commit is contained in:
Serhiy Storchaka 2013-12-17 14:59:42 +02:00
parent 170078804c
commit 87a854dc73
1 changed files with 1 additions and 0 deletions

View File

@ -1404,6 +1404,7 @@ make_flags(void)
#undef SetFlag
if (PyErr_Occurred()) {
Py_DECREF(seq);
return NULL;
}
return seq;