"James Hawkins" truiken@gmail.com writes:
- p = args;
- do
- {
if ((q = strstrW(p, separator))) *q = '\0';
(*numargs)++;
vector = msi_realloc(vector, *numargs * sizeof(LPWSTR));
vector[*numargs - 1] = p;
- } while (q);
This won't work for more than one arg.