Silence compiler warnings.
diff --git a/src/jemalloc.c b/src/jemalloc.c
index a32ce1a..796c815 100644
--- a/src/jemalloc.c
+++ b/src/jemalloc.c
@@ -864,7 +864,11 @@
{
void *ret;
size_t usize;
- prof_thr_cnt_t *cnt;
+ prof_thr_cnt_t *cnt
+#ifdef JEMALLOC_CC_SILENCE
+ = NULL
+#endif
+ ;
if (malloc_init()) {
ret = NULL;
@@ -939,7 +943,11 @@
int ret;
size_t usize;
void *result;
- prof_thr_cnt_t *cnt;
+ prof_thr_cnt_t *cnt
+#ifdef JEMALLOC_CC_SILENCE
+ = NULL
+#endif
+ ;
if (malloc_init())
result = NULL;
@@ -1046,7 +1054,11 @@
void *ret;
size_t num_size;
size_t usize;
- prof_thr_cnt_t *cnt;
+ prof_thr_cnt_t *cnt
+#ifdef JEMALLOC_CC_SILENCE
+ = NULL
+#endif
+ ;
if (malloc_init()) {
num_size = 0;
@@ -1121,8 +1133,16 @@
void *ret;
size_t usize;
size_t old_size = 0;
- prof_thr_cnt_t *cnt;
- prof_ctx_t *old_ctx;
+ prof_thr_cnt_t *cnt
+#ifdef JEMALLOC_CC_SILENCE
+ = NULL
+#endif
+ ;
+ prof_ctx_t *old_ctx
+#ifdef JEMALLOC_CC_SILENCE
+ = NULL
+#endif
+ ;
if (size == 0) {
if (config_sysv == false || opt_sysv == false)