(fix) check if found before changing location

This commit is contained in:
Ludovic Marcotte 2017-04-06 14:24:25 -04:00
parent d9d4808d29
commit 2e8c6680fe

View file

@ -373,7 +373,8 @@
r1 = [cleaned_message rangeOfCString: "\r\nBcc: "
options: 0
range: NSMakeRange(0,limit)];
r1.location += 2;
if (r1.location != NSNotFound)
r1.location += 2;
}
if (r1.location != NSNotFound)