Re: [PATCH] perlio.c: Coverity finding: finding false (Coverity notable to follow...
Jarkko Hietaniemi [Sun, 9 Apr 2006 10:18:52 +0000 (13:18 +0300)]
Message-ID: <4438B55C.9010604@gmail.com>

p4raw-id: //depot/perl@27751

perlio.c

index 47fbd92..c5da06a 100644 (file)
--- 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;