(verify_row): Plug memory leak.

This commit is contained in:
Markus Armbruster 2006-02-05 19:08:49 +00:00
parent 8add5fbb86
commit b11b81da8f

View file

@ -45,7 +45,7 @@ static int
verify_row(int type, int row) verify_row(int type, int row)
{ {
struct castr *ca = ef_cadef(type); struct castr *ca = ef_cadef(type);
void *row_ref = malloc(empfile[type].size); void *row_ref;
int i, j, k, n; int i, j, k, n;
struct castr *ca_sym; struct castr *ca_sym;
struct valstr val; struct valstr val;