Re: uninitialized pointer in scheduler.c

2008-01-01 Thread Allison Randal
Andy Lester wrote: It says that time_struct below is not initialized before use, and I sure don't see that it isn't. Was an incorrect change, now reverted. Allison

Re: uninitialized pointer in scheduler.c

2008-01-01 Thread Andy Lester
On Jan 1, 2008, at 8:38 AM, Leopold Toetsch wrote: struct timespec *time_struct; This is a pointer to an unallocated structure, which was filled thereafter. Of course. I understand the C. It was the intent I couldn't get into. -- Andy Lester => [EMAIL PROTECTED] => www.petdance.co

Re: uninitialized pointer in scheduler.c

2008-01-01 Thread Leopold Toetsch
Am Dienstag, 1. Januar 2008 08:39 schrieb Andy Lester: > Just reporting what GCC tells me, and I don't see that it's wrong. It > says that time_struct below is not initialized before use, and I sure > don't see that it isn't. Fixed in 24405. > struct timespec *time_struct; This is a pointe