mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Fix some crashes, overflows and using variables without values
This commit is contained in:
parent
23a381d882
commit
9ddb3265e1
11 changed files with 29 additions and 12 deletions
|
|
@ -275,6 +275,7 @@ void FileAccessUnix::store_8(uint8_t p_dest) {
|
|||
void FileAccessUnix::store_buffer(const uint8_t *p_src, int p_length) {
|
||||
|
||||
ERR_FAIL_COND_MSG(!f, "File must be opened before use.");
|
||||
ERR_FAIL_COND(!p_src);
|
||||
ERR_FAIL_COND((int)fwrite(p_src, 1, p_length, f) != p_length);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue