mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 06:15:37 +03:00
Fix incorrect result for replace_all (bug 5064, r=dvander).
Former-commit-id: e3824c4c87
This commit is contained in:
parent
5e69db511c
commit
a26a98cb98
@ -238,6 +238,8 @@ stock replace_all(string[], len, const what[], const with[])
|
||||
|
||||
while (replace(string[pos], len - pos, what, with) != 0)
|
||||
{
|
||||
total++;
|
||||
|
||||
/* jump to position after replacement */
|
||||
pos += with_len;
|
||||
|
||||
@ -261,7 +263,6 @@ stock replace_all(string[], len, const what[], const with[])
|
||||
|
||||
/* otherwise, reposition and update counters */
|
||||
pos += temp_pos;
|
||||
total++;
|
||||
}
|
||||
|
||||
return total;
|
||||
|
Loading…
Reference in New Issue
Block a user