Remove redundant check
Rafael Garcia-Suarez [Fri, 8 Feb 2008 11:04:23 +0000 (11:04 +0000)]
p4raw-id: //depot/perl@33248

perlio.c

index 3cb591d..d9c1e97 100644 (file)
--- a/perlio.c
+++ b/perlio.c
@@ -4102,10 +4102,8 @@ PerlIOBuf_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR * ptr, SSize_t cnt)
     if (!b->buf)
        PerlIO_get_base(f);
     b->ptr = ptr;
-    if (PerlIO_get_cnt(f) != cnt || b->ptr < b->buf) {
-       assert(PerlIO_get_cnt(f) == cnt);
-       assert(b->ptr >= b->buf);
-    }
+    assert(PerlIO_get_cnt(f) == cnt);
+    assert(b->ptr >= b->buf);
     PerlIOBase(f)->flags |= PERLIO_F_RDBUF;
 }