]> git.pond.sub.org Git - empserver/commitdiff
(verify_row): Plug memory leak.
authorMarkus Armbruster <armbru@pond.sub.org>
Sun, 5 Feb 2006 19:08:49 +0000 (19:08 +0000)
committerMarkus Armbruster <armbru@pond.sub.org>
Sun, 5 Feb 2006 19:08:49 +0000 (19:08 +0000)
src/lib/common/ef_verify.c

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