# | Line 48 | Line 48 | int main(argc, argv, envp) | |
---|---|---|
48 | /* strtok(3) */ | |
49 | while (args[count++] = strtok(NULL, " ")) | |
50 | /* realloc(3) */ | |
51 | < | args = realloc(args, sizeof (char *) * count); |
51 | > | args = realloc(args, sizeof (char *) * (count + 1)); |
52 | ||
53 | /* fork(2) */ | |
54 | switch (command = fork()) |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |