summaryrefslogtreecommitdiffstats
path: root/libglusterfs/src/glusterfs/mem-pool.h
diff options
context:
space:
mode:
authorVijay Bellur <vbellur@redhat.com>2019-02-27 16:02:43 -0800
committerPranith Kumar Karampuri <pkarampu@redhat.com>2019-04-12 13:08:28 +0000
commitc261eb6c1fa41b6a0eadabbb3a2f64dc194ec254 (patch)
tree93eb38d3e003c998a53844cc7a0081d1a9cf9b40 /libglusterfs/src/glusterfs/mem-pool.h
parent0e1223491e964096384edfae5032ed0d50d028ad (diff)
Replace memdup() with gf_memdup()
memdup() and gf_memdup() have the same implementation. Removed one API as the presence of both can be confusing. Change-Id: I562130c668457e13e4288e592792872d2e49887e updates: bz#1193929 Signed-off-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'libglusterfs/src/glusterfs/mem-pool.h')
-rw-r--r--libglusterfs/src/glusterfs/mem-pool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libglusterfs/src/glusterfs/mem-pool.h b/libglusterfs/src/glusterfs/mem-pool.h
index 0250b590fd9..1f2b1a9a5c4 100644
--- a/libglusterfs/src/glusterfs/mem-pool.h
+++ b/libglusterfs/src/glusterfs/mem-pool.h
@@ -193,7 +193,7 @@ gf_memdup(const void *src, size_t size)
{
void *dup_mem = NULL;
- dup_mem = GF_MALLOC(size, gf_common_mt_strdup);
+ dup_mem = GF_MALLOC(size, gf_common_mt_memdup);
if (!dup_mem)
goto out;