Commit 20fdd150 authored by Benjamin Peterson's avatar Benjamin Peterson

fix refleak in error condition

parent 7ff7f974
...@@ -1127,6 +1127,7 @@ get_data(PyObject *archive, PyObject *toc_entry) ...@@ -1127,6 +1127,7 @@ get_data(PyObject *archive, PyObject *toc_entry)
bytes_read = fread(buf, 1, data_size, fp); bytes_read = fread(buf, 1, data_size, fp);
} else { } else {
fclose(fp); fclose(fp);
Py_DECREF(raw_data);
PyErr_Format(ZipImportError, "can't read Zip file: %R", archive); PyErr_Format(ZipImportError, "can't read Zip file: %R", archive);
return NULL; return NULL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment