diff options
author | Jeremy Allison <jra@samba.org> | 2006-01-11 20:23:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:06:05 -0500 |
commit | e03a68ff7ec92700d4c53fa6b2e029befce9370c (patch) | |
tree | b76a9649bfcc6328ff28d96e9342a4296980ab07 /source3/lib/clobber.c | |
parent | 54b1c585bbe2e60e9251fcaaf4d95b68b31e2618 (diff) | |
download | samba-e03a68ff7ec92700d4c53fa6b2e029befce9370c.tar.gz samba-e03a68ff7ec92700d4c53fa6b2e029befce9370c.tar.xz samba-e03a68ff7ec92700d4c53fa6b2e029befce9370c.zip |
r12855: Remove erroneous commenting out of valgrind fix.
Jeremy.
(This used to be commit b76c7b613282dc89c54faf3e7cef98f7651c5a9d)
Diffstat (limited to 'source3/lib/clobber.c')
-rw-r--r-- | source3/lib/clobber.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/clobber.c b/source3/lib/clobber.c index 54b24ffed39..fb3a0dc2815 100644 --- a/source3/lib/clobber.c +++ b/source3/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 */ } |