Fix memory leak in LZMA decompressor

This commit is contained in:
Nick Wellnhofer 2017-09-07 18:55:46 +02:00
parent e2a9122b8d
commit 07e227ed00

View File

@ -797,6 +797,8 @@ __libxml2_xzclose(xzFile file)
xmlFree(state->in);
}
xmlFree(state->path);
if ((state->msg != NULL) && (state->err != LZMA_MEM_ERROR))
xmlFree(state->msg);
ret = close(state->fd);
xmlFree(state);
return ret ? ret : LZMA_OK;