Changeset 25191

Show
Ignore:
Timestamp:
04/26/08 15:35:00 (7 months ago)
Author:
mmu_man
Message:

Missing close() calls just for the sake of it.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • haiku/trunk/src/tools/fs_shell/fs_shell_command_unix.cpp

    r20894 r25191  
    8989                        fprintf(stderr, "Error: Unexpected end of fs_shell reply. Was " 
    9090                                "still expecting %d bytes\n", toRead); 
     91                        close(fd); 
    9192                        return false; 
    9293                } 
     
    9596                toRead -= bytesRead; 
    9697        } 
     98        close(fd); 
    9799 
    98100        *result = reply.error;