my code splits a char* line into a char*** cmds, first by character '|' then by whitespaces, \n etc. Sample I/O:
I: line = "ls -l / | unique | sort"
O: cmds = {{"ls", "-l", "/", NULL}, {unique, NULL}, {sort, NULL}, NULL}
Now, whenever it reaches line *cmds = realloc(*cmds, nlines+1);
with more than 1 word it produces error
*** Error in ./a.out': realloc(): invalid next size: 0x000000000114c010 ***
or
a.out: malloc.c:2372: sysmalloc: Assertion (old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2])) - __builtin_offsetof (struct malloc_chunk, fd)))) && old_size == 0) || ((unsigned long) (old_size) >= (unsigned long)((((__builtin_offsetof (struct malloc_chunk, fd_nextsize))+((2 *(sizeof(size_t))) - 1)) & ~((2 *(sizeof(size_t))) - 1))) && ((old_top)->size & 0x1) && ((unsigned long) old_end & pagemask) == 0)' failed.
Any help would be appreciated, I spent hours upon hours on it already...
void parse(char *line, char *** cmds)
{
printf("got line %s\n", line);
size_t nlines = 0;
*cmds = NULL;
while (*line != '\0') {
nlines++;
while (*line == ' ' || *line == '\t' || *line == '\n')
*line++ = '\0';
*cmds = realloc(*cmds, nlines+1);
(*cmds)[nlines-1] = line;
(*cmds)[nlines] = NULL;
while (*line != '\0' && *line != ' ' && *line != '\t' && *line != '\n')
line++;
}
**cmds = '\0';
}
void parsePipe(char *line, char ***cmds)
{
char *cmd = strtok(line, "|");
int linesFound = 0;
while (cmd != NULL)
{
printf("Printing word -> %s\n", cmd);
linesFound++;
parse(cmd, cmds++);
cmd = strtok(NULL, "|");
}
printf("This string contains %d lines separated with |\n",linesFound);
}
void main(void)
{
char line[1024];
char **cmds[64] = {0};
while (1) {
printf("lsh -> ");
gets(line);
printf("\n");
parsePipe(line, cmds);
}
}
sample to fix