]> Nishi Git Mirror - gwion.git/commitdiff
:art: Fix invalid file memory
authorJérémie Astor <fennecdjay@gmail.com>
Wed, 21 Apr 2021 04:12:10 +0000 (06:12 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Wed, 21 Apr 2021 04:12:10 +0000 (06:12 +0200)
src/compile.c

index aa06e238539aacd95a18aa94f5fbf6262c3d18bb..6cf1e8fcb1b9bda186edce2743aab04c93e5c189 100644 (file)
@@ -70,7 +70,7 @@ ANN static m_bool _compiler_open(struct Compiler* c) {
 #ifndef BUILD_ON_WINDOWS
 #include <sys/stat.h>
 ANN static int is_reg(const m_str path) {
-  struct stat s;
+  struct stat s = {};
   stat(path, &s);
   return !S_ISDIR(s.st_mode) &&
     (S_ISREG(s.st_mode) || !S_ISFIFO(s.st_mode));