fixed dereference problem
authorroot <devnull@localhost>
Thu, 15 Feb 1996 19:21:01 +0000 (19:21 +0000)
committerroot <devnull@localhost>
Thu, 15 Feb 1996 19:21:01 +0000 (19:21 +0000)
CVS patchset: 282
CVS date: 1996/02/15 19:21:01

rpm.c

diff --git a/rpm.c b/rpm.c
index bff3c0b..3265312 100755 (executable)
--- a/rpm.c
+++ b/rpm.c
@@ -163,7 +163,7 @@ void build(char * arg, int buildAmount) {
            fprintf(stderr, "Build failed.\n");
        }
     }
-    freeSpec(specfile);
+    freeSpec(*specfile);
     fclose(f);
 }