From dc392dea3e82b82a208d3f50748071c8a7317a62 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Mon, 9 Nov 2020 17:24:27 +0100 Subject: [PATCH] Fixed #6560: Missing return value. --- server/proxy/pf_modules.c | 1 + 1 file changed, 1 insertion(+) diff --git a/server/proxy/pf_modules.c b/server/proxy/pf_modules.c index 66dba97d7..1bec8b6cc 100644 --- a/server/proxy/pf_modules.c +++ b/server/proxy/pf_modules.c @@ -447,6 +447,7 @@ static BOOL pf_modules_free_handles_ArrayList_ForEachFkt(void* data, size_t inde WINPR_UNUSED(ap); if (handle) FreeLibrary(handle); + return TRUE; } void pf_modules_free(void)