From d599f5c8f748d8b525217ae6193bcfa69cd62467 Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Tue, 5 May 2015 23:15:50 +0200 Subject: [PATCH] Fix pointer indirection in free'ing of list --- webcit/roomlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webcit/roomlist.c b/webcit/roomlist.c index 42cd9db10..b9f967ce6 100644 --- a/webcit/roomlist.c +++ b/webcit/roomlist.c @@ -441,7 +441,7 @@ HashList *GetThisRoomPossibleMAlias(StrBuf *Target, WCTemplputParams *TP) if (Domains == NULL) return NULL; if (GetCount(Domains) == 0) { - DeleteHash(Domains); + DeleteHash(&Domains); return NULL; } PossibleAliases = NewHash(1, NULL); -- 2.30.2