|
From: David G. <gr...@ob...> - 2006-08-07 21:52:28
|
I have a simple question that doesn't seem to be addressed
anywhere.
When I get a " Conditional jump or move depends on uninitialised
value(s)" error, how do I know which variable is uninitialized.
For example, my code could be:
if (a || b || c) { ... }
How do I know whether the uninitialized value is a, b or c?
Printing the address of the uninitialized data for this and
other such errors would be tremendously useful.
-Dave
|