Fix: ini.c: use zmalloc()
[lttng-tools.git] / src / common / config / ini.c
index 7b2a4b6530ac478434021edc0b65ea13a13c51df..18ed705be9c0d74e9ce2a533bb9ca507456186f4 100644 (file)
@@ -109,7 +109,7 @@ int ini_parse_file(FILE* file, ini_entry_handler handler, void* user)
        int error = 0;
 
 #if !INI_USE_STACK
-       line = (char*)malloc(INI_MAX_LINE);
+       line = (char*)zmalloc(INI_MAX_LINE);
        if (!line) {
                return -2;
        }
This page took 0.024034 seconds and 5 git commands to generate.