Fix: free metadata cache after grace period in consumer
[lttng-tools.git] / src / common / config / ini.c
index 4369a32f93bd3317a9e6d9d08286f6d2d469bbb9..18ed705be9c0d74e9ce2a533bb9ca507456186f4 100644 (file)
  * http://code.google.com/p/inih/
  */
 
+#define _GNU_SOURCE
 #include <stdio.h>
 #include <ctype.h>
 #include <string.h>
+#include <common/common.h>
 
 #include "ini.h"
 
@@ -107,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.024095 seconds and 4 git commands to generate.