I need to run a command using spawnvp(), so I can redirect the output. My problem is, that I don't have argv, but just a string with the whole commnd, so I need to split it. Unfortunately I got an exception when I passed my generated argv into the function.
Doing it this way works:
char* argv[2];
argv[0] = "kzip";
argv[1] = NULL;
This is the way I am doing it, which is failing:
char** argv2 = (char**)malloc(sizeof(char*) * 2);
argv2[0] = "kzip";
argv2[1] = NULL;
This is how I call spawnvp():
hProcess = (HANDLE)spawnvp(P_NOWAIT, argv2[0], (const char* const*)&argv2);
I know there is some difference between a char[] and a char*, but I can't figure out how to create a dynamically created char*[] instead of a char**.