Skip to content

Commit 4591fce

Browse files
Realmd: Fix masking of login string if password is empty (vmangos#3016)
1 parent d7ac872 commit 4591fce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/realmd/Main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ bool StartDB()
438438
++occurrence;
439439

440440
if (occurrence == 3 && start == dbStringLog.end())
441-
start = ++itr;
441+
start = itr + 1;
442442
else if (occurrence == 4 && end == dbStringLog.end())
443443
end = itr;
444444

0 commit comments

Comments
 (0)