mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-09 17:23:50 +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();
|
||||
|
||||
_Iter i = iter;
|
||||
difference_type ret;
|
||||
difference_type ret{};
|
||||
|
||||
// Walk up.
|
||||
if (pos > i.pos)
|
||||
|
Loading…
Reference in New Issue
Block a user