Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: binary MIME-Version: 1.0 X-Mailer: MIME-tools 5.420 (Entity 5.420) Subject: error in filebase+suffix list generation in plugin code X-RT-Original-Encoding: iso-8859-1 Content-Length: 438 krb5int_get_plugin_filenames works from two lists, filebases[] and fileexts[], to build a list of filenames to look for. However, it's allocating M+N elements in its array, computing all M*N combinations, and sticking them into the M+N slots in overlapping passes. No overrun here, but we can leak memory and omit some filenames from the final list, if filebases ever gets more than one element, which I think it currently does not.