36 lines
1.0 KiB
Diff
36 lines
1.0 KiB
Diff
From 8cc2ce4e9060a71d441a377008fb2f567baa5d92 Mon Sep 17 00:00:00 2001
|
|
From: Alexey Tikhonov <atikhono@redhat.com>
|
|
Date: Thu, 23 Jan 2020 20:07:41 +0100
|
|
Subject: [PATCH 21/24] sss_ptr_hash: removed redundant check
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
`sss_ptr_hash_check_type()` call would take care of this case.
|
|
|
|
Reviewed-by: Pavel Březina <pbrezina@redhat.com>
|
|
---
|
|
src/util/sss_ptr_hash.c | 6 ------
|
|
1 file changed, 6 deletions(-)
|
|
|
|
diff --git a/src/util/sss_ptr_hash.c b/src/util/sss_ptr_hash.c
|
|
index 7326244e6..bf111a613 100644
|
|
--- a/src/util/sss_ptr_hash.c
|
|
+++ b/src/util/sss_ptr_hash.c
|
|
@@ -268,12 +268,6 @@ sss_ptr_hash_lookup_internal(hash_table_t *table,
|
|
return NULL;
|
|
}
|
|
|
|
- /* This may happen if we are in delete callback
|
|
- * and we try to search the hash table. */
|
|
- if (table_value.ptr == NULL) {
|
|
- return NULL;
|
|
- }
|
|
-
|
|
if (!sss_ptr_hash_check_type(table_value.ptr, "struct sss_ptr_hash_value")) {
|
|
return NULL;
|
|
}
|
|
--
|
|
2.20.1
|
|
|