merged fix from RC_0_16

This commit is contained in:
Arvid Norberg 2013-02-24 18:42:20 +00:00
parent 7b53dd0491
commit 6b3117d872
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ namespace libtorrent
char const* s1 = lhs.c_str();
char const* s2 = rhs.c_str();
while (*s1 != 0 && *s2 != 0)
while (*s1 != 0 || *s2 != 0)
{
c1 = to_lower(*s1);
c2 = to_lower(*s2);