Default values of "struct item *items[MAX_ITEMS]" array?

Andriy Korud a.korud@vector.com.pl
Thu May 13 18:04:00 GMT 2004


Hi, I'm trying to compile linux kernel (2.4.25) from ppc405 and have the following problem:
After 

struct item *items[MAX_ITEMS];

each element of items[] is initialized to 0xffffffff and following code 

if (items[item] != NULL) {
  items[item]->field = value;
}

gives kernel oops (as expected - trying to reference memory at address 0xffffffff). 
When I compile and run the same code on host PC - array is initialized with zeros and everything is fine.
GCC versions tried - 3.2.3, 3.3.2, 3.3.3.

The questions is: I am doing something wrong or this is a bug or feature of gcc?

thanks in advance,

--

Andriy Korud



More information about the Gcc mailing list