Revert "Fix `_File::get_buffer` length always set to p_length"

This reverts commit 9a7e537aac.

Fixes #47971.
This commit is contained in:
Rémi Verschelde 2021-04-17 13:06:43 +02:00
parent 51be345a17
commit 701fa8a779
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -2117,7 +2117,7 @@ PoolVector<uint8_t> _File::get_buffer(int p_length) const {
w.release();
if (len < p_length)
data.resize(len);
data.resize(p_length);
return data;
}