summaryrefslogtreecommitdiff
path: root/boehm-gc/malloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'boehm-gc/malloc.c')
-rw-r--r--boehm-gc/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/boehm-gc/malloc.c b/boehm-gc/malloc.c
index f5c8f06b0dd..353a9bc9599 100644
--- a/boehm-gc/malloc.c
+++ b/boehm-gc/malloc.c
@@ -217,7 +217,7 @@ register int k;
GC_words_allocd += lw;
UNLOCK();
ENABLE_SIGNALS();
- if (init & !GC_debugging_started && 0 != result) {
+ if (init && !GC_debugging_started && 0 != result) {
BZERO(result, n_blocks * HBLKSIZE);
}
}