bin/tests/names/t_names.c. [RT #17473]
+2300. [bug] Fixed failure to close open file in
+ bin/tests/names/t_names.c. [RT #17473]
+
2299. [bug] Remove unnecessary NULL check in
bin/nsupdate/nsupdate.c. [RT #17475]
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: t_names.c,v 1.43 2007/06/19 23:47:00 tbox Exp $ */
+/* $Id: t_names.c,v 1.44 2008/01/14 11:47:48 marka Exp $ */
#include <config.h>
else if (('A' <= c) && (c <= 'Z'))
val = c - 'A'+ 10;
else {
+ (void)fclose(fp);
t_info("Bad format in datafile\n");
return (0);
}
/*
* Buffer too small.
*/
+ (void)fclose(fp);
t_info("Buffer overflow error\n");
return (0);
}