mirror of
https://github.com/minetest/irrlicht.git
synced 2025-08-02 07:10:41 +02:00
Fix uninitialized memory error in operator- for ustring16 iterators
This commit is contained in:
@ -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)
|
||||||
|
Reference in New Issue
Block a user