From 5e747af24abc021073d979925628fec28052a731 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Mon, 5 May 2008 21:55:35 +1000 Subject: [PATCH] fix load_super/free_super mismatch in util.c From: Dan Williams Signed-off-by: Dan Williams --- util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.c b/util.c index bd469995..dbe46404 100644 --- a/util.c +++ b/util.c @@ -818,7 +818,7 @@ struct supertype *guess_super(int fd) st->ss = NULL; rv = superlist[bestsuper]->load_super(st, fd, NULL); if (rv == 0) { - ss->free_super(st); + superlist[bestsuper]->free_super(st); return st; } } -- 2.39.2