]> git.saurik.com Git - apple/system_cmds.git/blobdiff - gcore.tproj/dyld.c
system_cmds-880.40.5.tar.gz
[apple/system_cmds.git] / gcore.tproj / dyld.c
index 0ff3958e8a8d48e09c9454d2746ba6bd684086f3..92aeac1fe758dcb2b22f78c760c37f271b7abc8d 100644 (file)
@@ -174,9 +174,9 @@ libent_insert(const char *rawnm, const uuid_t uuid, uint64_t mhaddr, const nativ
     if (NULL != le)
         return le;  // disallow multiple names for the same uuid
 
-       char *nm = realpath(rawnm, NULL);
-       if (NULL == nm)
-               nm = strdup(rawnm);
+    char *nm = realpath(rawnm, NULL);
+    if (NULL == nm)
+        nm = strdup(rawnm);
     const unsigned long nmhash = simple_namehash(nm);
     le = libent_lookup_bypathname_withhash(nm, nmhash);
        if (NULL != le) {