K 10 svn:author V 7 oshogbo K 8 svn:date V 27 2017-10-21T19:30:33.037163Z K 7 svn:log V 339 MFC r323852: 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 END