From: Nicholas Clark Date: Sat, 2 Jul 2005 21:19:09 +0000 (+0000) Subject: Andy suggests this tweak to Dave's fix for MEM_WRAP_CHECK to shut up X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ffa5faba68902313c2103a742dc00a206824c798;p=p5sagit%2Fp5-mst-13.2.git Andy suggests this tweak to Dave's fix for MEM_WRAP_CHECK to shut up a different compiler warnings. I guess we need a waterbed theory of compiler warnings. p4raw-id: //depot/perl@25055 --- diff --git a/handy.h b/handy.h index 911aca8..228490f 100644 --- a/handy.h +++ b/handy.h @@ -598,7 +598,7 @@ hopefully catches attempts to access uninitialized memory. #ifdef PERL_MALLOC_WRAP #define MEM_WRAP_CHECK(n,t) \ - (void)((sizeof(t)>1?n:0)>((MEM_SIZE)~0)/sizeof(t)?(Perl_croak_nocontext(PL_memory_wrap),0):0) + (void)((sizeof(t)>1?n:1)>((MEM_SIZE)~0)/sizeof(t)?(Perl_croak_nocontext(PL_memory_wrap),0):0) #define MEM_WRAP_CHECK_1(n,t,a) \ (void)((n)>((MEM_SIZE)~0)/sizeof(t)?(Perl_croak_nocontext(a),0):0) #define MEM_WRAP_CHECK_2(n,t,a,b) \