Fix PoolByteArray.decompress_dynamic return value and memleak
(cherry picked from commit de47cb0c5b
)
This commit is contained in:
parent
eb9a847566
commit
4ab57389a5
|
@ -652,17 +652,17 @@ struct _VariantCall {
|
||||||
|
|
||||||
static void _call_PoolByteArray_decompress_dynamic(Variant &r_ret, Variant &p_self, const Variant **p_args) {
|
static void _call_PoolByteArray_decompress_dynamic(Variant &r_ret, Variant &p_self, const Variant **p_args) {
|
||||||
PoolByteArray *ba = reinterpret_cast<PoolByteArray *>(p_self._data._mem);
|
PoolByteArray *ba = reinterpret_cast<PoolByteArray *>(p_self._data._mem);
|
||||||
PoolByteArray *decompressed = memnew(PoolByteArray);
|
PoolByteArray decompressed;
|
||||||
int max_output_size = (int)(*p_args[0]);
|
int max_output_size = (int)(*p_args[0]);
|
||||||
Compression::Mode mode = (Compression::Mode)(int)(*p_args[1]);
|
Compression::Mode mode = (Compression::Mode)(int)(*p_args[1]);
|
||||||
|
|
||||||
decompressed->resize(1024);
|
decompressed.resize(1024);
|
||||||
int result = Compression::decompress_dynamic(decompressed, max_output_size, ba->read().ptr(), ba->size(), mode);
|
int result = Compression::decompress_dynamic(&decompressed, max_output_size, ba->read().ptr(), ba->size(), mode);
|
||||||
|
|
||||||
if (result == OK) {
|
if (result == OK) {
|
||||||
r_ret = decompressed;
|
r_ret = decompressed;
|
||||||
} else {
|
} else {
|
||||||
decompressed->resize(0);
|
decompressed.resize(0);
|
||||||
r_ret = decompressed;
|
r_ret = decompressed;
|
||||||
ERR_FAIL_MSG("Decompression failed.");
|
ERR_FAIL_MSG("Decompression failed.");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue