Author: dab
Date: Wed Feb 27 22:29:37 2019
New Revision: 344646
URL: https://svnweb.freebsd.org/changeset/base/344646

Log:
  MFC r344473:
  
  CID 1332000: Logically dead code in 
sys/dev/pms/RefTisa/tisa/sassata/sas/ini/itdio.c
  
  A pointer is first tested for NULL. If non-NULL, another pointer is
  set equal to the first. The second pointer is then checked for NULL
  and an error path taken if so. This second test and the associated
  path is dead code as the pointer value, having just been checked for
  NULL, cannot be NULL at this point. Remove the dead code.
  
  Sponsored by: Dell EMC Isilon

Modified:
  stable/10/sys/dev/pms/RefTisa/tisa/sassata/sas/ini/itdio.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/pms/RefTisa/tisa/sassata/sas/ini/itdio.c
==============================================================================
--- stable/10/sys/dev/pms/RefTisa/tisa/sassata/sas/ini/itdio.c  Wed Feb 27 
22:29:26 2019        (r344645)
+++ stable/10/sys/dev/pms/RefTisa/tisa/sassata/sas/ini/itdio.c  Wed Feb 27 
22:29:37 2019        (r344646)
@@ -1820,12 +1820,6 @@ tiNumOfLunIOCTLreq(
       break;
     }
     tdIORequestBody = (tdIORequestBody_t *)tiRequestBody;
-    
-    if(tdIORequestBody == agNULL)
-    {
-      status = IOCTL_CALL_FAIL;
-      break;
-    }
     tdIORequestBody->tiIORequest = tiIORequest;
     
     /* save context if we need to abort later */
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to