show/hide this revision's text 5 added 627 characters in body

Your problem is that you don't add a null character after the data read. So the strsep calls don't know where to stop. In C, strings must be terminated by a null character (that's called the terminating null character).

// don't forget to add error handling at some point (s == -1)
ssize_t s = read(0, bBuffer, BUFSIZ-1);
bBuffer[s] = '\0';

With that in place, i don't see what array should be cleared now, since execvp will read arguments until the first null pointer. The do loop, however, adds that null pointer already, which is the null pointer returned by the last invocation of strsep.

The problem would of course also be solved too by just clearing bBuffer (the data where *pArgs is pointing to after the first command was scanned). Note that you have to do that also before scanning the first time, since you can't assume the chars in bBuffer array are initialized to any sensible values.

memset(bBuffer, 0, sizeof bBuffer);

Place that just before the read invocation (but in any case, read only maximally BUFSIZE-1, because the terminating null character must have space too!).

But as I've shown above, you don't need this memset call. Just add the terminating null character manually.

show/hide this revision's text 4 deleted 249 characters in body

Your problem is that you don't add a null character after the data read. So the strsep calls don't know where to stop. In C, strings must be terminated by a null character (that's called the terminating null character).

// don't forget to add error handling at some point (s == -1)
ssize_t s = read(0, bBuffer, BUFSIZ-1);
bBuffer[s] = '\0';

You can also get rid of this:

pArgs[aCount-2][strlen(pArgs[aCount-2])-1] = '\0';

Since strsep will replace the separator by a null character already, and the last token will have the null character you wrote earlier after the read.

With that in place, i don't see what array should be cleared now, since execvp will read arguments until the first null pointer. The do loop, however, adds that null pointer already, which is the null pointer returned by the last invocation of strsep.

show/hide this revision's text 3 zero character -> null character. terminology is difficult!

Your problem is that you don't add a zero null character after the data read. So the strsep calls don't know where to stop. They consider the string as a c-stringIn C, which always strings must be terminated by a zero null character (that's called the terminating null character).

// don't forget to add error handling at some point (s == -1)
ssize_t s = read(0, bBuffer, BUFSIZ-1);
bBuffer[s] = '\0';

You can also get rid of this:

pArgs[aCount-2][strlen(pArgs[aCount-2])-1] = '\0';

Since strsep will replace the separator by a zero null character already, and the last token will have the zero null character you wrote earlier after the read (the terminating null).

With that in place, i don't see what array should be cleared now, since execvp will read arguments until the first null pointer. The do loop, however, adds that null pointer already, which is the null pointer returned by the last invocation of strsep.

Naturally, you still need to check for things like a maximal count of arguments (10, in your case).

show/hide this revision's text 2 last->first
show/hide this revision's text 1