mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Fix PoolByteArray.decompress_dynamic return value and memleak
This commit is contained in:
parent
689f59dca0
commit
de47cb0c5b
@ -660,17 +660,17 @@ struct _VariantCall {
|
||||
|
||||
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 *decompressed = memnew(PoolByteArray);
|
||||
PoolByteArray decompressed;
|
||||
int max_output_size = (int)(*p_args[0]);
|
||||
Compression::Mode mode = (Compression::Mode)(int)(*p_args[1]);
|
||||
|
||||
decompressed->resize(1024);
|
||||
int result = Compression::decompress_dynamic(decompressed, max_output_size, ba->read().ptr(), ba->size(), mode);
|
||||
decompressed.resize(1024);
|
||||
int result = Compression::decompress_dynamic(&decompressed, max_output_size, ba->read().ptr(), ba->size(), mode);
|
||||
|
||||
if (result == OK) {
|
||||
r_ret = decompressed;
|
||||
} else {
|
||||
decompressed->resize(0);
|
||||
decompressed.resize(0);
|
||||
r_ret = decompressed;
|
||||
ERR_FAIL_MSG("Decompression failed.");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user