Merge pull request #52121 from groud/fix_localvector_insert
Fix LocalVector crash on insert.
This commit is contained in:
commit
22cae39c1e
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ public:
|
|||
push_back(p_val);
|
||||
} else {
|
||||
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[p_pos] = p_val;
|
||||
|
|
Loading…
Reference in a new issue