From 1a7eb52aeeee94e2e91fae69a003ce1b23e4eecd Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 9 Jul 2007 07:55:09 +0000 Subject: r23756: Fix Coverity id 388 (This used to be commit 91af086823265ed66bbd0bdc1cced070b7dd0629) --- source3/lib/util_reg_api.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/lib') diff --git a/source3/lib/util_reg_api.c b/source3/lib/util_reg_api.c index a4fb0261e3..43ad347d4b 100644 --- a/source3/lib/util_reg_api.c +++ b/source3/lib/util_reg_api.c @@ -82,6 +82,7 @@ WERROR registry_pull_value(TALLOC_CTX *mem_ctx, if (length + 2 < length) { /* Integer wrap. */ + SAFE_FREE(tmp); err = WERR_INVALID_PARAM; goto error; } -- cgit