mirror of
https://github.com/godotengine/godot.git
synced 2024-11-29 15:42:29 +00:00
Merge pull request #49072 from pfertyk/issue-49006-decompress-crashes-godot
[3.x] Return error when decompressing empty PoolByteArray
This commit is contained in:
commit
2555567e7a
@ -631,6 +631,10 @@ struct _VariantCall {
|
||||
r_ret = decompressed;
|
||||
ERR_FAIL_MSG("Decompression buffer size must be greater than zero.");
|
||||
}
|
||||
if (ba->size() == 0) {
|
||||
r_ret = decompressed;
|
||||
ERR_FAIL_MSG("Compressed buffer size must be greater than zero.");
|
||||
}
|
||||
|
||||
decompressed.resize(buffer_size);
|
||||
int result = Compression::decompress(decompressed.write().ptr(), buffer_size, ba->read().ptr(), ba->size(), mode);
|
||||
|
Loading…
Reference in New Issue
Block a user