From: Jarkko Hietaniemi Date: Sun, 9 Apr 2006 10:18:52 +0000 (+0300) Subject: Re: [PATCH] perlio.c: Coverity finding: finding false (Coverity notable to follow... X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0f0eef279b3be952546c621e078d7f4da86c02a1;p=p5sagit%2Fp5-mst-13.2.git Re: [PATCH] perlio.c: Coverity finding: finding false (Coverity notable to follow vtable logic) but adding an assert Message-ID: <4438B55C.9010604@gmail.com> p4raw-id: //depot/perl@27751 --- diff --git a/perlio.c b/perlio.c index 47fbd92..c5da06a 100644 --- a/perlio.c +++ b/perlio.c @@ -3709,7 +3709,7 @@ PerlIOBuf_fill(pTHX_ PerlIO *f) if (!b->buf) PerlIO_get_base(f); /* allocate via vtable */ - assert(b->buf); + assert(b->buf); /* The b->buf does get allocated via the vtable system. */ b->ptr = b->end = b->buf;