freebsd-dev/sys/contrib/libnv
Mariusz Zaborski 1dacabe1ab The 'while (array != NULL) { }' suggests scan-build that array may be
initially NULL, which is not possible. Change the loop to
'do {} while (array != NULL)' to satisfy scan-build and assert that
array really cannot be NULL just in case.

Submitted by:	pjd@
Found by:	scan-build
MFC after:	1 month
Sponsored by:	Wheel Systems
2017-09-21 10:03:14 +00:00
..
cnvlist.c Fix style issue in the cnv API. 2016-08-27 13:40:27 +00:00
dnvlist.c
nv_impl.h Add support for the arrays in nvlist library. 2015-08-15 06:34:49 +00:00
nvlist_impl.h Add cnv API. 2016-08-27 13:37:30 +00:00
nvlist.c The 'while (array != NULL) { }' suggests scan-build that array may be 2017-09-21 10:03:14 +00:00
nvpair_impl.h Add support for the arrays in nvlist library. 2015-08-15 06:34:49 +00:00
nvpair.c Remove redundant initialization. Don't use variable - just return the value. 2017-09-21 10:00:16 +00:00