|
@@ -8,10 +8,14 @@
|
|
|
int main (int argc, char ** argv, char ** envp)
|
|
|
{
|
|
|
PAL_STR args[1] = { 0 };
|
|
|
- PAL_HANDLE child = DkProcessCreate(NULL, 0, args);
|
|
|
|
|
|
- if (child)
|
|
|
- pal_printf("Create Process without Executable OK\n");
|
|
|
+
|
|
|
+ if (argc == 1) {
|
|
|
+ PAL_HANDLE child = DkProcessCreate(NULL, 0, args);
|
|
|
+
|
|
|
+ if (child)
|
|
|
+ pal_printf("Create Process without Executable OK\n");
|
|
|
+ }
|
|
|
|
|
|
return 0;
|
|
|
}
|