/[classpath]/classpath/java/io/FileInputStream.java
ViewVC logotype

Diff of /classpath/java/io/FileInputStream.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.12 by mark, Thu Jul 11 15:56:49 2002 UTC revision 1.13 by mark, Sun Oct 27 13:07:17 2002 UTC
# Line 412  open(String name) throws FileNotFoundExc Line 412  open(String name) throws FileNotFoundExc
412  public synchronized void  public synchronized void
413  close() throws IOException  close() throws IOException
414  {  {
415    closeInternal(native_fd);    if (native_fd != -1)
416        closeInternal(native_fd);
417    native_fd = -1; // Ensures we don't pick up a stray file descriptor later on    native_fd = -1; // Ensures we don't pick up a stray file descriptor later on
418  }  }
419    

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26