(rtbl_destroy): free whole table

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@11387 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
2002-09-04 21:25:09 +00:00
parent 20912b2ef6
commit 98bd53fb2d

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000 Kungliga Tekniska H<>gskolan * Copyright (c) 2000, 2002 Kungliga Tekniska H<>gskolan
* (Royal Institute of Technology, Stockholm, Sweden). * (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved. * All rights reserved.
* *
@@ -83,12 +83,14 @@ rtbl_destroy (rtbl_t table)
for (j = 0; j < c->num_rows; j++) for (j = 0; j < c->num_rows; j++)
free (c->rows[j].data); free (c->rows[j].data);
free (c->rows);
free (c->header); free (c->header);
free (c->prefix); free (c->prefix);
free (c); free (c);
} }
free (table->column_prefix); free (table->column_prefix);
free (table->columns); free (table->columns);
free (table);
} }
int int