Fix LocalVector crash on insert.
This commit is contained in:
parent
6e87d62873
commit
de0765b94a
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ public:
|
||||||
push_back(p_val);
|
push_back(p_val);
|
||||||
} else {
|
} else {
|
||||||
resize(count + 1);
|
resize(count + 1);
|
||||||
for (U i = count; i > p_pos; i--) {
|
for (U i = count - 1; i > p_pos; i--) {
|
||||||
data[i] = data[i - 1];
|
data[i] = data[i - 1];
|
||||||
}
|
}
|
||||||
data[p_pos] = p_val;
|
data[p_pos] = p_val;
|
||||||
|
|
Loading…
Reference in a new issue