|
From: Dennis L. <pla...@in...> - 2005-09-11 11:29:44
|
At 11:35 11.09.2005, tim wrote:
>hi all,
>
>i've got a question concerning the error message:
>Conditional jump or move depends on uninitialised value(s)
>
>it occurs on structures like this:
>
>while (s2 = *s1)
>{
> s1 = something(s2);
>}
>
>since the code is working, i'm pretty clueless, why i get this error.
>is it somehow possible to suppress this error message?
Just because the code *seems* to be working does not mean its correct. You
can either check by valgrind client requests, or by simply outputting the
values if they are really defined. To help us helping you on this error,
you need to provide us with a little more context on your code, a small
testcase would be fine.
greets
Dennis
Carpe quod tibi datum est
|