Changeset 6828 in vbox for trunk/src/VBox/Main
- Timestamp:
- Feb 6, 2008 12:07:47 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/linux/server.cpp
r6827 r6828 928 928 */ 929 929 const char *apszArgs[7]; 930 inti = 0;930 unsigned i = 0; 931 931 apszArgs[i++] = argv[0]; 932 932 apszArgs[i++] = "--pipe"; … … 941 941 if (gAutoShutdown) 942 942 apszArgs[i++] = "--auto-shutdown"; 943 apszArgs[i++] = NULL; Assert(i <= (int)RT_ELEMENTS(apszArgs));943 apszArgs[i++] = NULL; Assert(i <= RT_ELEMENTS(apszArgs)); 944 944 execv (apszArgs[0], (char * const *)apszArgs); 945 945 exit (0);
Note:
See TracChangeset
for help on using the changeset viewer.