From: Nicholas Clark Date: Wed, 30 Jun 2004 21:37:12 +0000 (+0000) Subject: Assert that we aren't leaking memory. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bf694877f81fb381ca8c9057cca6a2b05b7cc6cf;p=p5sagit%2Fp5-mst-13.2.git Assert that we aren't leaking memory. p4raw-id: //depot/perl@23018 --- diff --git a/sv.c b/sv.c index 4e519a1..1cca051 100644 --- a/sv.c +++ b/sv.c @@ -6665,6 +6665,7 @@ Perl_sv_eq(pTHX_ register SV *sv1, register SV *sv2) } if (is_utf8) { /* Downgrade not possible - cannot be eq */ + assert (tpv == 0); return FALSE; } }