Merge branch 'master' of ssh://github.com/gnustep/libs-base

Conflicts:
	ChangeLog
This commit is contained in:
Richard Frith-Macdonald 2018-02-09 08:33:30 +00:00
commit 006160ebc3
2 changed files with 10 additions and 4 deletions

View file

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

View file

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