|
From:
<br...@ph...> - 2006-03-17 16:27:23
|
Daniel J Sebald wrote: > ==9857== Conditional jump or move depends on uninitialised value(s) > ==9857== at 0x8060111: update (fit.c:989) > > tmp = s + strlen(s) - 1; > while (*tmp != '\\' && *tmp != '/' && *tmp != ':' && tmp - s >= 0) > [989] tmp--; That's the same line 989 that I was looking at when I said there's no conditional anywhere in it. One possible problem is that tmp could be moved to before 's'. A change of test sequence might be in order. Checked into CVS. |