mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Merge branch 'master' of ssh://github.com/gnustep/libs-base
Conflicts: ChangeLog
This commit is contained in:
commit
006160ebc3
2 changed files with 10 additions and 4 deletions
|
@ -2,6 +2,11 @@
|
|||
|
||||
* Source/NSTimeZone.m: fix missing fieldwidth specified in fscanf call
|
||||
|
||||
2018-02-09 Fred Kiefer <fredkiefer@gmx.de>
|
||||
|
||||
* Source/NSXMLElement.m(-addAttribute:): Correct linear list code
|
||||
for name spaces. This fixes the last remaining Coverity issue.
|
||||
|
||||
2018-02-08 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSPortCoder.h
|
||||
|
@ -141,7 +146,7 @@
|
|||
* configure: regenerate
|
||||
|
||||
2018-01-14 Yavor Doganov <yavor@gnu.org>
|
||||
|
||||
|
||||
* Tests/base/NSXMLDocument/basic.m:
|
||||
* Tests/base/NSXMLDocument/cdata.m:
|
||||
* Tests/base/NSXMLNode/basic.m:
|
||||
|
@ -171,7 +176,7 @@
|
|||
external references and validating against a DTD.
|
||||
|
||||
2018-01-14 Yavor Doganov <yavor@gnu.org>
|
||||
|
||||
|
||||
* configure.ac: Use PKG_PROG_PKG_CONFIG instead of AC_PATH_PROG to
|
||||
find pkg-config as it supports cross-compilation.
|
||||
* configure.ac: Bump ICU requirement to >= 50 for UDAT_PATTERN.
|
||||
|
|
|
@ -285,11 +285,12 @@ extern void ensure_oldNs(xmlNodePtr node);
|
|||
}
|
||||
else
|
||||
{
|
||||
last->next = ns->next;
|
||||
last->next = cur->next;
|
||||
}
|
||||
cur->next = NULL;
|
||||
break;
|
||||
}
|
||||
}
|
||||
last = cur;
|
||||
cur = cur->next;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue