From: Volker Lendecke Date: Wed, 9 May 2012 07:16:54 +0000 (+0200) Subject: s3: Fix Coverity ID 242695 Dereference before null check X-Git-Tag: samba-4.0.0alpha21~238 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=39577f1e99900c95561fa137e23c0488660bcf5e;p=thirdparty%2Fsamba.git s3: Fix Coverity ID 242695 Dereference before null check winreg_printer_openkey above already dereferences winreg_handle --- diff --git a/source3/rpc_client/cli_winreg_spoolss.c b/source3/rpc_client/cli_winreg_spoolss.c index 1d90d5e69e0..1cf034e9f24 100644 --- a/source3/rpc_client/cli_winreg_spoolss.c +++ b/source3/rpc_client/cli_winreg_spoolss.c @@ -1348,6 +1348,7 @@ WERROR winreg_get_printer(TALLOC_CTX *mem_ctx, char *path; NTSTATUS status; WERROR result = WERR_OK; + WERROR ignore; const char **enum_names = NULL; enum winreg_Type *enum_types = NULL; DATA_BLOB *enum_data_blobs = NULL; @@ -1595,15 +1596,11 @@ WERROR winreg_get_printer(TALLOC_CTX *mem_ctx, result = WERR_OK; done: - if (winreg_handle != NULL) { - WERROR ignore; - - if (is_valid_policy_hnd(&key_hnd)) { - dcerpc_winreg_CloseKey(winreg_handle, tmp_ctx, &key_hnd, &ignore); - } - if (is_valid_policy_hnd(&hive_hnd)) { - dcerpc_winreg_CloseKey(winreg_handle, tmp_ctx, &hive_hnd, &ignore); - } + if (is_valid_policy_hnd(&key_hnd)) { + dcerpc_winreg_CloseKey(winreg_handle, tmp_ctx, &key_hnd, &ignore); + } + if (is_valid_policy_hnd(&hive_hnd)) { + dcerpc_winreg_CloseKey(winreg_handle, tmp_ctx, &hive_hnd, &ignore); } TALLOC_FREE(tmp_ctx);