diff options
author | Zdenek Kabelac <zkabelac@redhat.com> | 2018-11-27 12:12:51 +0100 |
---|---|---|
committer | Zdenek Kabelac <zkabelac@redhat.com> | 2018-11-29 23:05:43 +0100 |
commit | 8bb5dd54303df384233a06057d9258385d0363ec (patch) | |
tree | fa6eb53676289edd5f406c63327007dd5c37a6e4 /base | |
parent | cb04b84c79f10e6b3f1b376cf7611d0afed26c39 (diff) | |
download | lvm2-8bb5dd54303df384233a06057d9258385d0363ec.tar.gz |
base: use calloc
Make zalloc a wrapper over calloc
Diffstat (limited to 'base')
-rw-r--r-- | base/memory/zalloc.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/base/memory/zalloc.h b/base/memory/zalloc.h index d2ef827d6..4f6df542f 100644 --- a/base/memory/zalloc.h +++ b/base/memory/zalloc.h @@ -20,10 +20,7 @@ static inline void *zalloc(size_t len) { - void *ptr = malloc(len); - if (ptr) - memset(ptr, 0, len); - return ptr; + return calloc(1, len); } //---------------------------------------------------------------- |