mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
* Source/NSXMLParser.m: Fix small bug in last commit that broke
all gui applications when there was a commented out section in the user default XML file.
This commit is contained in:
parent
5aab6f84cf
commit
f4c5c519c2
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2020-05-08 Fred Kiefer <fredkiefer@gmx.de>
|
||||
|
||||
* Source/NSXMLParser.m: Fix small bug in last commit that broke
|
||||
all gui applications when there was a commented out section in the
|
||||
user default XML file.
|
||||
|
||||
2020-05-07 Frederik Seiffert <frederik@algoriddim.com>
|
||||
|
||||
* Headers/Foundation/NSLocale.h:
|
||||
|
|
|
@ -1428,7 +1428,7 @@ NSLog(@"_processTag <%@%@ %@>", flag?@"/": @"", tag, attributes);
|
|||
this->cp += 3;
|
||||
tp = this->cp;
|
||||
while (this->cp < this->cend-3
|
||||
&& strncmp((char *)this->cp, "-->", 3) != 0)
|
||||
&& strncmp((char *)addr(this->cp), "-->", 3) != 0)
|
||||
{
|
||||
this->cp++; // search
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue