mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-10 01:33:51 +01:00
Fix uninitialized memory error in operator- for ustring16 iterators
This commit is contained in:
parent
1d4672bd92
commit
0740d055ac
@ -597,7 +597,7 @@ public:
|
|||||||
return difference_type();
|
return difference_type();
|
||||||
|
|
||||||
_Iter i = iter;
|
_Iter i = iter;
|
||||||
difference_type ret;
|
difference_type ret{};
|
||||||
|
|
||||||
// Walk up.
|
// Walk up.
|
||||||
if (pos > i.pos)
|
if (pos > i.pos)
|
||||||
|
Loading…
Reference in New Issue
Block a user