Fix accidental over-checking of args in launcherXPCService.
authorJason Molenda <jmolenda@apple.com>
Thu, 16 Oct 2014 02:53:57 +0000 (02:53 +0000)
committerJason Molenda <jmolenda@apple.com>
Thu, 16 Oct 2014 02:53:57 +0000 (02:53 +0000)
llvm-svn: 219895

lldb/source/Host/macosx/launcherXPCService/main.mm

index 397d3a5..3dc5e2c 100644 (file)
@@ -136,7 +136,7 @@ get_args(xpc_object_t message, const char **path, const char ***argsOut, const c
     {
         return 1;
     }
-    if (path && *path && argsOut && *argsOut)
+    if (path && argsOut && *argsOut)
     {
         *path = (*argsOut)[0];
     }