fix bug #66816 when validating. don't use sys/time.h if configure did not

* valid.c: fix bug #66816 when validating.
* xmllint.c: don't use sys/time.h if configure did not found it
Daniel
This commit is contained in:
Daniel Veillard 2001-12-13 08:48:14 +00:00
parent 3fc555e520
commit ed472f34d2
3 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Thu Dec 13 09:44:58 CET 2001 Daniel Veillard <daniel@veillard.com>
* valid.c: fix bug #66816 when validating.
* xmllint.c: don't use sys/time.h if configure did not found it
Mon Dec 10 21:39:55 MST 2001 John Fleck <jfleck@inkstain.net> Mon Dec 10 21:39:55 MST 2001 John Fleck <jfleck@inkstain.net>
* docs/xmllint.1, xmllint.xml, xmlcatalog.1, xmlcatalog_man.html, * docs/xmllint.1, xmllint.xml, xmlcatalog.1, xmlcatalog_man.html,

View File

@ -3938,6 +3938,7 @@ xmlValidateElementContent(xmlValidCtxtPtr ctxt, xmlNodePtr child,
tmp->name = cur->name; tmp->name = cur->name;
tmp->ns = cur->ns; tmp->ns = cur->ns;
tmp->next = NULL; tmp->next = NULL;
tmp->content = NULL;
if (repl == NULL) if (repl == NULL)
repl = last = tmp; repl = last = tmp;
else { else {

View File

@ -20,7 +20,9 @@
#include <sys/time.h> #include <sys/time.h>
#endif /* _MSC_VER */ #endif /* _MSC_VER */
#else /* _WIN32 */ #else /* _WIN32 */
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h> #include <sys/time.h>
#endif
#endif /* _WIN32 */ #endif /* _WIN32 */