fix use after free (#419)

This commit is contained in:
Elio Blanca
2023-09-04 02:54:22 +02:00
committed by GitHub
parent 328249a628
commit 6640f9c707

View File

@@ -97,9 +97,9 @@ main(int argc, char **argv)
g_free(buf);
mdb_free_tabledef(table);
g_free(table_name);
g_free(propColName);
mdb_close(mdb);
printf("Column %s not found in MSysObjects!\n", propColName);
g_free(propColName);
return 1;
}