|
From: <sv...@va...> - 2009-07-24 20:48:53
|
Author: njn
Date: 2009-07-24 21:48:36 +0100 (Fri, 24 Jul 2009)
New Revision: 10597
Log:
Uncomment this; not sure why it was commented out.
Modified:
trunk/memcheck/tests/custom_alloc.c
Modified: trunk/memcheck/tests/custom_alloc.c
===================================================================
--- trunk/memcheck/tests/custom_alloc.c 2009-07-24 19:34:55 UTC (rev 10596)
+++ trunk/memcheck/tests/custom_alloc.c 2009-07-24 20:48:36 UTC (rev 10597)
@@ -94,8 +94,8 @@
// Bug 137073: passing 0 to MALLOCLIKE_BLOCK was causing an assertion
// failure. Test for this (and likewise for FREELIKE_BLOCK).
- //VALGRIND_MALLOCLIKE_BLOCK(0,0,0,0);
- //VALGRIND_FREELIKE_BLOCK(0,0);
+ VALGRIND_MALLOCLIKE_BLOCK(0,0,0,0);
+ VALGRIND_FREELIKE_BLOCK(0,0);
return x;
|