diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-11-01 22:12:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-01 22:12:47 +0100 |
commit | af4fd9de9c02052f3dc7330cd7cb6aa3f2107191 (patch) | |
tree | eeac97cd39ee467902921a75fbdf3e5238716f4a /drivers | |
parent | 86fdb51e04a10362b502df95dd52286701aec521 (diff) | |
parent | 9ddb3265e1a6d2f9937ff6a27d04302d76c10431 (diff) |
Merge pull request #33238 from qarmin/other_fixes
Fix some crashes, overflows and using variables without values
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/unix/file_access_unix.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/unix/file_access_unix.cpp b/drivers/unix/file_access_unix.cpp index 99425d5002..e3026f9fd9 100644 --- a/drivers/unix/file_access_unix.cpp +++ b/drivers/unix/file_access_unix.cpp @@ -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); } |