]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/ipc/ipc_hash.c
xnu-2422.1.72.tar.gz
[apple/xnu.git] / osfmk / ipc / ipc_hash.c
index 87f4fc6c3baa94b4b6dc11547a8274c550173b53..491111b512002aa41c237b859255e32daf7e480d 100644 (file)
@@ -207,7 +207,9 @@ ipc_hash_table_lookup(
 {
        mach_port_index_t hindex, index;
 
-       assert(obj != IO_NULL);
+       if (obj == IO_NULL) {
+               return FALSE;
+       }
 
        hindex = IH_TABLE_HASH(obj, size);