From e5825ab22de75315e1af9cc58e79b9e2c3896226 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 15 May 2012 19:49:31 +0200 Subject: [PATCH] wbinfo: Fix Coverity ID 242684 Resource leak --- nsswitch/wbinfo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nsswitch/wbinfo.c b/nsswitch/wbinfo.c index 357673f81ce..3f7036dcbad 100644 --- a/nsswitch/wbinfo.c +++ b/nsswitch/wbinfo.c @@ -1390,6 +1390,7 @@ static bool wbinfo_lookup_sids(const char *arg) names[i].name, names[i].type); } wbcFreeMemory(names); + wbcFreeMemory(domains); return true; } -- 2.11.4.GIT