Fix uninitialized variable warning that shows on Tinderbox but not my

setup. (??)

Submitted by:	Michael Butler <imb at protected-networks dot net>
This commit is contained in:
Matthew D Fleming 2010-11-29 21:53:21 +00:00
parent 3e9a7e408f
commit dd6312a7c1

View File

@ -845,7 +845,7 @@ static int
sysctl_sysctl_name2oid(SYSCTL_HANDLER_ARGS)
{
char *p;
int error, oid[CTL_MAXNAME], len;
int error, oid[CTL_MAXNAME], len = 0;
struct sysctl_oid *op = 0;
if (!req->newlen)