Fix uninitialized memory error in operator- for ustring16 iterators

This commit is contained in:
Desour 2023-08-29 14:14:14 +02:00 committed by sfan5
parent 1d4672bd92
commit 0740d055ac
1 changed files with 1 additions and 1 deletions

View File

@ -597,7 +597,7 @@ public:
return difference_type();
_Iter i = iter;
difference_type ret;
difference_type ret{};
// Walk up.
if (pos > i.pos)