summaryrefslogtreecommitdiffstats
path: root/common/dlmalloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/dlmalloc.c')
-rw-r--r--common/dlmalloc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/dlmalloc.c b/common/dlmalloc.c
index e524204730..3f7a0970c8 100644
--- a/common/dlmalloc.c
+++ b/common/dlmalloc.c
@@ -621,20 +621,20 @@ static unsigned long top_pad = DEFAULT_TOP_PAD;
static char* sbrk_base = (char*)(-1);
/* The maximum memory obtained from system via sbrk */
-static unsigned long max_sbrked_mem = 0;
+static unsigned long max_sbrked_mem;
/* The maximum via either sbrk or mmap */
-static unsigned long max_total_mem = 0;
+static unsigned long max_total_mem;
/* internal working copy of mallinfo */
-static struct mallinfo current_mallinfo = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
+static struct mallinfo current_mallinfo;
/* The total memory obtained from system via sbrk */
#define sbrked_mem (current_mallinfo.arena)
/* Tracking mmaps */
-static unsigned long mmapped_mem = 0;
+static unsigned long mmapped_mem;