Fixes a segfault in help.cgi, which happens if user tries to search in man pages.
Fedora bug #
1921881
- The scheduler's systemd service file now waits for the nslcd service to start
(Issue #69)
- Root certificates were incorrectly stored in "~/.cups/ssl".
+- Fixed segfault in help.cgi when searching in man pages
Changes in CUPS v2.3.3op1
*/
for (; node; node = (help_node_t *)cupsArrayNext(hi->nodes))
- if (section && strcmp(node->section, section))
+ if (node->section && section && strcmp(node->section, section))
continue;
else if (filename && strcmp(node->filename, filename))
continue;