(fix) avoid incorrect truncation leading to exception (fixes #4806)

This commit is contained in:
Ludovic Marcotte
2019-09-13 09:52:04 -04:00
committed by leecher1337
parent bd6bdcb136
commit 6d27fdd340
2 changed files with 12 additions and 0 deletions

View File

@@ -729,6 +729,17 @@ struct GlobalObjectId {
break;
}
// If we didn't find a "space" character search again for &# to avoid
// truncating the content in the middle of a XML entity
if (i < 0)
{
for (i = len-2 ; i >= 0; i--)
{
if ([theContent characterAtIndex: i] == '&' && [theContent characterAtIndex: i+1] == '#')
break;
}
}
return [theContent substringToIndex: i];
}

1
NEWS
View File

@@ -3,6 +3,7 @@
Bug fixes
- [eas] improve FolderSync operation (#4672)
- [eas] avoid incorrect truncation leading to exception (#4806)
4.0.5 (2018-MM-DD)
------------------