From 12bf8470588ad38b415327f92dfbce5c321b3715 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 30 Mar 2011 07:04:47 +0200 Subject: s3: Fix Coverity ID 2223: RESOURCE_LEAK --- nsswitch/wbinfo.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'nsswitch') diff --git a/nsswitch/wbinfo.c b/nsswitch/wbinfo.c index 2436b3bd3c..447e5555cc 100644 --- a/nsswitch/wbinfo.c +++ b/nsswitch/wbinfo.c @@ -619,6 +619,8 @@ static bool wbinfo_show_onlinestatus(const char *domain) is_offline ? "offline" : "online" ); } + wbcFreeMemory(domain_list); + return true; } -- cgit