Subject: Re: Bug in usr/src/sys/net/radix.c on 3.0?
To: Markus Mayer <mmayer@redback.com>
From: Martin Husemann <martin@duskware.de>
List: tech-kern
Date: 05/04/2006 19:52:47
On Thu, May 04, 2006 at 10:25:02AM -0700, Markus Mayer wrote:
> The static variable 'initialized' is never explicitly set to 0 in the 
> beginning.

The "static" makes it a non auto variable (i.e. it does live in the BSS, not
on the stack) - so it is guaranteed to be 0 at startup.

Martin