IGN:Make LZX decompression a little more robust

This commit is contained in:
Kovid Goyal 2008-11-17 23:10:48 -08:00
commit a91fa52351

View File

@ -187,6 +187,7 @@ decompress(PyObject *self, PyObject *args)
if (err != MSPACK_ERR_OK) {
Py_DECREF(retval);
retval = NULL;
PyErr_SetString(LzxError, "LZX decompression failed");
}