Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/io/PushbackInputStream.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    202202  {
    203203    int numBytes = Math.min(buf.length - pos, len);
     204
    204205    if (numBytes > 0)
    205206      {
     
    210211      }
    211212
    212     if (len > 0)
     213    if (len > 0)
    213214      {
    214215        len = super.read(b, off, len);
    215         if (len == -1) // EOF
     216EOF
    216217          return numBytes > 0 ? numBytes : -1;
    217218        numBytes += len;
     
    319320        pos += numread;
    320321        n -= numread;
    321         n -= super.skip(n);
     322        if (n > 0)
     323          n -= super.skip(n);
    322324      }
    323325
Note: See TracChangeset for help on using the changeset viewer.