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.
