Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - 6304 local variable not initialized http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 6304                Local variable not initialized
------------------------------------------------------------------------------
 Description
   This warning indicates that a local variable is used in an expression,
   before assigning a value to that variable. In this case the value
   contained in the local variable is indeterminate, and likely to cause
   unexpected behavior.

 Solution
   Initialize local variables before use. There are many situations when
   initialization is not indeed necessary, or even impossible, like in
   the case of a file variable passed to the fopen() function. In such
   cases the warning can be ignored, and suppressed by the
   #pragma W_INIT_LOCAL- directive, or the -W compiler switch.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson