Branch: refs/heads/stable1-proposed
Home:
https://github.com/kronosnet/kronosnet
Commit: ed7573d17e7f8e71ab4874665d1de787a1ba16e4
https://github.com/kronosnet/kronosnet/commit/ed7573d17e7f8e71ab4874665d1de…
Author: Christine Caulfield <ccaulfie(a)redhat.com>
Date: 2020-02-21 (Fri, 21 Feb 2020)
Changed paths:
M man/doxyxml.c
Log Message:
-----------
man: Fix covscan reports in doxyxml.c
This fixes most of the remaining covscan errors in doxyxml.c.
The ones that remain are caused by malloced structures being
stored in qb_hashtable_maps.
These still cause unfreed memory, because the contents of the maps
are never explictly freed, but as they are used until the very end of
the program (when the OS will free everything) I'm dubious as to
whether it's worth doing it in the code - or whether covscan will
work out what's going on anyway.
Commit: 3ba5ddfc329699928bd3ee1fae0926dc54678fe1
https://github.com/kronosnet/kronosnet/commit/3ba5ddfc329699928bd3ee1fae092…
Author: Christine Caulfield <ccaulfie(a)redhat.com>
Date: 2020-02-21 (Fri, 21 Feb 2020)
Changed paths:
M man/doxyxml.c
Log Message:
-----------
man: Change strcat to strncat
Oddly, covscan doesn't compain about the use of strcat, but
I'm going to pre-empt it, just in case it decides to.
Compare:
https://github.com/kronosnet/kronosnet/compare/b784b9658bc1...3ba5ddfc3296