How do I clear this array pointer in C? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T20:35:47Z http://stackoverflow.com/feeds/question/873620 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/873620/how-do-i-clear-this-array-pointer-in-c 0 How do I clear this array pointer in C? Nazgulled 2009-05-17T00:26:58Z 2009-05-17T03:13:38Z <p>I'm trying do to a basic bash with the use of system calls but I'm having some little problems with a pointer array.</p> <p>To resume my code, I read commands from the stdin with read() to a buffer then I use strsep() to separate the command from the arguments and all the arguments into an array. Then I create a new process with fork() and execute that command with the associated arguments with execvp().</p> <p>All this goes into a infinite loop until the user types "quit" (not coded yet). The problem is that after the first iteration, I need *pArgs to be empty, for the next command and arguments. And I don't know how to do it...</p> <p>Here's my code:</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; #include &lt;string.h&gt; #include &lt;unistd.h&gt; int main(int argc, char **argv) { char bBuffer[BUFSIZ], *pArgs[10], *aPtr = NULL, *sPtr; int aCount; pid_t pid; while(1) { write(1, "\e[1;31mmyBash \e[1;32m# \e[0m", 27); read(0, bBuffer, BUFSIZ); sPtr = bBuffer; aCount = 0; do { aPtr = strsep(&amp;sPtr, " "); pArgs[aCount++] = aPtr; } while(aPtr); pArgs[aCount-2][strlen(pArgs[aCount-2])-1] = '\0'; // Debug code to output pArgs content write(1, "|&gt;", 2); write(1, pArgs[0], strlen(pArgs[0])); write(1, "&lt;|", 2); if(strlen(pArgs[0]) &gt; 1) { pid = fork(); if(pid == -1) { perror("fork"); exit(1); } if(pid == 0) { execvp(pArgs[0], pArgs); exit(0); } } } return 0; } </code></pre> <p>P.S: Sorry but I can't provide an input and output test case at the moment. Hopefully, this is not that hard to understand and fix that you guys don't need it. I'll post it later if it's needed though...</p> <p><strong>Just to clear things up:</strong><br /> I know I asked how to clear the array and I got an answer for that. But it seems now obvious to me that my problem wasn't that, but the garbage that the buffer was collecting as pointed out by litb. It makes more sense to terminate the string with the null character than to clear the array. That's why I'm marking litb's answer as right one.</p> http://stackoverflow.com/questions/873620/how-do-i-clear-this-array-pointer-in-c/873627#873627 7 Answer by rpetrich for How do I clear this array pointer in C? rpetrich 2009-05-17T00:30:11Z 2009-05-17T01:06:55Z <pre><code>int i; for (i = 0; i &lt; 10; i++) pArgs[i] = NULL; </code></pre> http://stackoverflow.com/questions/873620/how-do-i-clear-this-array-pointer-in-c/873667#873667 1 Answer by Johannes Schaub - litb for How do I clear this array pointer in C? Johannes Schaub - litb 2009-05-17T01:06:53Z 2009-05-17T02:38:31Z <p>Your problem is that you don't add a null character after the data read. So the <code>strsep</code> calls don't know where to stop. In C, strings must be terminated by a null character (that's called the terminating null character). </p> <pre><code>// don't forget to add error handling at some point (s == -1) ssize_t s = read(0, bBuffer, BUFSIZ-1); bBuffer[s] = '\0'; </code></pre> <p>With that in place, i don't see what array should be cleared now, since <code>execvp</code> will read arguments until the first null pointer. The <code>do</code> loop, however, adds that null pointer already, which is the null pointer returned by the last invocation of <code>strsep</code>.</p> <p>The problem would of course also be solved too by just clearing bBuffer (the data where <code>*pArgs</code> 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 <code>bBuffer</code> array are initialized to any sensible values. </p> <pre><code>memset(bBuffer, 0, sizeof bBuffer); </code></pre> <p>Place that just before the <code>read</code> invocation (but in any case, read only maximally <code>BUFSIZE-1</code>, because the terminating null character must have space too!). </p> <p>But as I've shown above, you don't need this memset call. Just add the terminating null character manually.</p>