rpmdepFreeConflicts() needs to be used, not plain free()
authorewt <devnull@localhost>
Mon, 21 Oct 1996 01:21:48 +0000 (01:21 +0000)
committerewt <devnull@localhost>
Mon, 21 Oct 1996 01:21:48 +0000 (01:21 +0000)
CVS patchset: 1117
CVS date: 1996/10/21 01:21:48

verify.c

index 9daac28..d91156c 100644 (file)
--- a/verify.c
+++ b/verify.c
@@ -92,7 +92,7 @@ static void verifyDependencies(rpmdb db, Header h) {
            }
        }
        printf("\n");
-       free(conflicts);
+       rpmdepFreeConflicts(conflicts, numConflicts);
     }
 }