summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Maloney <asmaloney@gmail.com>2020-06-19 11:36:28 -0400
committerAndy Maloney <asmaloney@gmail.com>2020-06-19 11:36:28 -0400
commit37a2a5a99789d2ec7cfed616ee11d5560143faac (patch)
tree816159b4e5ae538bd19e39dae256ec580c93cee6
parent868781603a51bdf2b7a6855c63d0e46e5a293807 (diff)
Ensure FileAccessBuffered structs are properly initialized
-rw-r--r--core/io/file_access_buffered.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/io/file_access_buffered.h b/core/io/file_access_buffered.h
index 61c0fa7489..99d5ce903d 100644
--- a/core/io/file_access_buffered.h
+++ b/core/io/file_access_buffered.h
@@ -51,16 +51,16 @@ protected:
Error set_error(Error p_error) const;
mutable struct File {
- bool open;
- int size;
- int offset;
+ bool open = false;
+ int size = 0;
+ int offset = 0;
String name;
- int access_flags;
+ int access_flags = 0;
} file;
mutable struct Cache {
Vector<uint8_t> buffer;
- int offset;
+ int offset = 0;
} cache;
virtual int read_data_block(int p_offset, int p_size, uint8_t *p_dest = nullptr) const = 0;