1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Merge pull request #66720 from qarmin/unintialized_memory

Remove usage of unitialized variables
This commit is contained in:
Rémi Verschelde
2022-10-05 11:42:47 +02:00
17 changed files with 32 additions and 32 deletions

View File

@@ -86,7 +86,7 @@ Error FileAccessUnix::open_internal(const String &p_path, int p_mode_flags) {
backend (unix-compatible mostly) supports utf8 encoding */
//printf("opening %s as %s\n", p_path.utf8().get_data(), path.utf8().get_data());
struct stat st;
struct stat st = {};
int err = stat(path.utf8().get_data(), &st);
if (!err) {
switch (st.st_mode & S_IFMT) {
@@ -252,7 +252,7 @@ void FileAccessUnix::store_buffer(const uint8_t *p_src, uint64_t p_length) {
bool FileAccessUnix::file_exists(const String &p_path) {
int err;
struct stat st;
struct stat st = {};
String filename = fix_path(p_path);
// Does the name exist at all?
@@ -284,7 +284,7 @@ bool FileAccessUnix::file_exists(const String &p_path) {
uint64_t FileAccessUnix::_get_modified_time(const String &p_file) {
String file = fix_path(p_file);
struct stat flags;
struct stat flags = {};
int err = stat(file.utf8().get_data(), &flags);
if (!err) {
@@ -297,7 +297,7 @@ uint64_t FileAccessUnix::_get_modified_time(const String &p_file) {
uint32_t FileAccessUnix::_get_unix_permissions(const String &p_file) {
String file = fix_path(p_file);
struct stat flags;
struct stat flags = {};
int err = stat(file.utf8().get_data(), &flags);
if (!err) {