diff options
Diffstat (limited to 'src/liblzma/common/allocator.c')
-rw-r--r-- | src/liblzma/common/allocator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/common/allocator.c b/src/liblzma/common/allocator.c index c5970312..5ced9d16 100644 --- a/src/liblzma/common/allocator.c +++ b/src/liblzma/common/allocator.c @@ -35,7 +35,7 @@ lzma_alloc(size_t size, lzma_allocator *allocator) else ptr = malloc(size); -#if !defined(NDEBUG) && defined(HAVE_MEMSET) +#ifndef NDEBUG // This helps to catch some stupid mistakes, but also hides them from // Valgrind. Uncomment when useful. // if (ptr != NULL) |