Fix LocalVector crash on insert.

(cherry picked from commit de0765b94a)
This commit is contained in:
Gilles Roudière
2021-08-26 11:54:56 +02:00
committed by Rémi Verschelde
parent 1b7d42c99e
commit 7e105039f8

View File

@ -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;