PREfast Warning 1 (Windows CE 5.0)
1 - Using uninitialized memory <variable>.
This warning indicates that the specified variable was used without being initialized.
This warning is reported on all lines where the uninitialized variable is used.
Example
Defective Source
int i;
i++;
Corrected Source
int i = 0;
i++;
Send Feedback on this topic to the authors