Commit d4d7737c authored by Benjamin Peterson's avatar Benjamin Peterson

merge 3.4

parents b57eaead ef9cf083
...@@ -1143,6 +1143,7 @@ get_data(PyObject *archive, PyObject *toc_entry) ...@@ -1143,6 +1143,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