aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/common/allocator.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/liblzma/common/allocator.c')
-rw-r--r--src/liblzma/common/allocator.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/liblzma/common/allocator.c b/src/liblzma/common/allocator.c
index edea0f68..c5970312 100644
--- a/src/liblzma/common/allocator.c
+++ b/src/liblzma/common/allocator.c
@@ -36,9 +36,10 @@ lzma_alloc(size_t size, lzma_allocator *allocator)
ptr = malloc(size);
#if !defined(NDEBUG) && defined(HAVE_MEMSET)
- // This helps to catch some stupid mistakes.
- if (ptr != NULL)
- memset(ptr, 0xFD, size);
+ // This helps to catch some stupid mistakes, but also hides them from
+ // Valgrind. Uncomment when useful.
+// if (ptr != NULL)
+// memset(ptr, 0xFD, size);
#endif
return ptr;