Fix another PAL unit test

This commit is contained in:
Don Porter
2017-04-07 12:58:29 -04:00
parent 7d98e8ca28
commit cf2a3f966a
+7 -2
View File
@@ -371,8 +371,13 @@ has_manifest:
exec_uri[exec_strlen] = '\0';
ret = _DkStreamOpen(&exec_handle, exec_uri, PAL_ACCESS_RDONLY,
0, 0, 0);
if (ret < 0)
init_fail(-ret, "cannot open executable");
// DEP 3/20/17: There are cases where we want to let
// the PAL start up without a main executable. Don't
// die here, just free the exec_uri buffer.
if (ret < 0) {
free(exec_uri);
exec_uri = NULL;
}
}
}