diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-02-25 19:43:09 +0000 |
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-02-25 23:00:44 +0000 |
| commit | 76f014689093aa8eecc1061e13cc4f8694967a12 (patch) | |
| tree | d68df7e97b46f672cd944e89e62d823149781d07 /lib/hash.c | |
| parent | 97b5d752d7af198d0b2881b5a3b2e61f2b4921e5 (diff) | |
*: do not check XMALLOC / XCALLOC for null ret
They never return NULL
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'lib/hash.c')
| -rw-r--r-- | lib/hash.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/hash.c b/lib/hash.c index 9f9fc31d37..611fd33fbe 100644 --- a/lib/hash.c +++ b/lib/hash.c @@ -95,8 +95,6 @@ static void hash_expand(struct hash *hash) new_index = XCALLOC(MTYPE_HASH_INDEX, sizeof(struct hash_bucket *) * new_size); - if (new_index == NULL) - return; hash->stats.empty = new_size; |
