r12043: It's amazing the warnings you find when compiling on a 64-bit
[sfrench/samba-autobuild/.git] / source / lib / util_file.c
index 963d610beffb5737d84e031dbf20b956be112b84..407a8b24fc97381c33502cd72c76c24dfa5a6dca 100644 (file)
@@ -525,7 +525,7 @@ static char **file_lines_parse(char *p, size_t size, int *numlines)
 char **file_lines_load(const char *fname, int *numlines)
 {
        char *p;
-       size_t size;
+       size_t size = 0;
 
        p = file_load(fname, &size);
        if (!p) {