Dont bother checking for NULL fd on stats collection
authorPanu Matilainen <Panu Matilainen pmatilai@redhat.com>
Mon, 11 Jul 2011 09:20:12 +0000 (12:20 +0300)
committerPanu Matilainen <Panu Matilainen pmatilai@redhat.com>
Mon, 11 Jul 2011 09:20:12 +0000 (12:20 +0300)
- All the places calling these are already checking for NULL fd,
  no point re-re-re-re-re-checking it

rpmio/rpmio.c

index 905b562..69be11b 100644 (file)
@@ -244,14 +244,12 @@ static const char * fdbg(FD_t fd)
 
 static void fdstat_enter(FD_t fd, fdOpX opx)
 {
-    if (fd == NULL) return;
     if (fd->stats != NULL)
        (void) rpmswEnter(fdOp(fd, opx), (ssize_t) 0);
 }
 
 static void fdstat_exit(FD_t fd, fdOpX opx, ssize_t rc)
 {
-    if (fd == NULL) return;
     if (rc == -1)
        fd->syserrno = errno;
     if (fd->stats != NULL)