Replace bughy implementation of function 'remove_all()'.
Counterexample for old implementation: char str[] = "aaa"; remove_all(str, 'a'); printf("%s\n", str); // displays "a" if we're lucky, //or crashes if we're not.
This commit is contained in:
parent
7892511501
commit
0c268f5fc9
1 changed files with 4 additions and 4 deletions
|
@ -51,13 +51,13 @@ void remove_all(char *str, char to_remove) {
|
|||
char *read = str;
|
||||
char *write = str;
|
||||
while (*read) {
|
||||
if (*read == to_remove) {
|
||||
read++;
|
||||
if (*read != to_remove) {
|
||||
*write = *read;
|
||||
++write;
|
||||
}
|
||||
read++;
|
||||
write++;
|
||||
++read;
|
||||
}
|
||||
*write = '\0';
|
||||
}
|
||||
|
||||
//opens process *cmd and stores output in *output
|
||||
|
|
Loading…
Reference in a new issue