diff options
Diffstat (limited to 'boehm-gc/malloc.c')
-rw-r--r-- | boehm-gc/malloc.c | 2 |
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); } } |