diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2024-08-16 22:57:45 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2024-08-16 22:57:45 +0000 |
commit | 97108ceccd1db86967f2d5524733ef15b96aa983 (patch) | |
tree | b32e96ff000fc4dbebdbacc20848c6c104e60e59 /gnu/usr.bin | |
parent | f2e0cc50090faa4dcf89ee6afea0399c53fab500 (diff) |
Delete bogus test of array being NULL
ok miod@
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/texinfo/makeinfo/xml.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/texinfo/makeinfo/xml.c b/gnu/usr.bin/texinfo/makeinfo/xml.c index 94dc91e54d3..3e1a843a4d6 100644 --- a/gnu/usr.bin/texinfo/makeinfo/xml.c +++ b/gnu/usr.bin/texinfo/makeinfo/xml.c @@ -1,5 +1,5 @@ /* xml.c -- xml output. - $Id: xml.c,v 1.3 2019/05/27 07:13:38 otto Exp $ + $Id: xml.c,v 1.4 2024/08/16 22:57:44 guenther Exp $ Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc. @@ -871,7 +871,7 @@ xml_insert_element_with_attribute (elt, arg, format, va_alist) return; } - if (!xml_element_list[elt].name || !strlen (xml_element_list[elt].name)) + if (!strlen (xml_element_list[elt].name)) { /*printf ("Warning: Inserting empty element %d\n", elt);*/ return; |