summaryrefslogtreecommitdiffstats
path: root/source/lib/clobber.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-01-11 20:23:02 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:06:05 -0500
commitb76c7b613282dc89c54faf3e7cef98f7651c5a9d (patch)
treeeb05414cf2582d16aab0af10b32a234f49aee85e /source/lib/clobber.c
parenteaaeaa767e86151886964dcdd9f3186f0b31ed53 (diff)
downloadsamba-b76c7b613282dc89c54faf3e7cef98f7651c5a9d.tar.gz
samba-b76c7b613282dc89c54faf3e7cef98f7651c5a9d.tar.xz
samba-b76c7b613282dc89c54faf3e7cef98f7651c5a9d.zip
r12855: Remove erroneous commenting out of valgrind fix.
Jeremy.
Diffstat (limited to 'source/lib/clobber.c')
-rw-r--r--source/lib/clobber.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/clobber.c b/source/lib/clobber.c
index 54b24ffed39..fb3a0dc2815 100644
--- a/source/lib/clobber.c
+++ b/source/lib/clobber.c
@@ -54,7 +54,7 @@ void clobber_region(const char *fn, unsigned int line, char *dest, size_t len)
* (This is not redundant with the clobbering above. The
* marking might not actually take effect if we're not running
* under valgrind.) */
-// VALGRIND_MAKE_WRITABLE(dest, len);
+ VALGRIND_MAKE_WRITABLE(dest, len);
#endif /* VALGRIND */
#endif /* DEVELOPER */
}