mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
fix bad type in assignment
This commit is contained in:
parent
41fd87ce35
commit
f1b1c1c754
2 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,8 @@
|
|||
|
||||
* Source/GSFTPURLHandle.m: change memcpy to memmove to avoid possible
|
||||
problems with overlapping source and destination areas.
|
||||
* Source/Additions/Unicode.m: ensure iconv handle is closed
|
||||
* Source/NSXMLParser.m: fix incorrect type assignment
|
||||
|
||||
2018-02-01 Fred Kiefer <fredkiefer@gmx.de>
|
||||
|
||||
|
|
|
@ -1366,7 +1366,7 @@ NSLog(@"_processTag <%@%@ %@>", flag?@"/": @"", tag, attributes);
|
|||
}
|
||||
else if (nil == attributes)
|
||||
{
|
||||
attr = [NSMutableArray new];
|
||||
attr = [NSMutableDictionary new];
|
||||
attributes = attr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue