fix bad type in assignment

This commit is contained in:
Richard Frith-Macdonald 2018-02-03 16:03:32 +00:00
parent 41fd87ce35
commit f1b1c1c754
2 changed files with 3 additions and 1 deletions

View file

@ -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>

View file

@ -1366,7 +1366,7 @@ NSLog(@"_processTag <%@%@ %@>", flag?@"/": @"", tag, attributes);
}
else if (nil == attributes)
{
attr = [NSMutableArray new];
attr = [NSMutableDictionary new];
attributes = attr;
}