Fix memory leak in parser

This commit is contained in:
Ronnie Holm 2021-11-13 15:17:51 +01:00
parent 864e3ee9f3
commit 4133bc93ee

View File

@ -410,6 +410,8 @@ int main(int argc, char* argv[])
}
}
free(enumLines);
// Functions info data
funcs = (FunctionInfo *)calloc(MAX_FUNCS_TO_PARSE, sizeof(FunctionInfo));