summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/hashmap.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/hashmap.c b/src/hashmap.c
index 6185dcf..292c006 100644
--- a/src/hashmap.c
+++ b/src/hashmap.c
@@ -215,16 +215,12 @@ hashmap_insert(hashmap_t map, const char *key, const void *data, size_t len)
if (!key_copy)
return -ENOMEM;
- if (data) {
- data_copy = safemalloc(len);
- if (!data_copy) {
- safefree(key_copy);
- return -ENOMEM;
- }
- memcpy(data_copy, data, len);
- } else {
- data_copy = NULL;
- }
+ data_copy = safemalloc(len);
+ if (!data_copy) {
+ safefree(key_copy);
+ return -ENOMEM;
+ }
+ memcpy(data_copy, data, len);
ptr = safemalloc(sizeof(struct hashentry_s));
if (!ptr) {