https://sourceware.org/bugzilla/show_bug.cgi?id=29038
Nick Clifton <nickc at redhat dot com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|UNCONFIRMED |RESOLVED --- Comment #4 from Nick Clifton <nickc at redhat dot com> --- Oh this was embarrassing. There was a typo in the code. I had this: if (sec_data != NULL && sec_data->saved_bias) bias = sec_data->saved_bias; whereas it should have been: if (sec_data != NULL && sec_data->saved_bias) bias = sec_data->bias; (saved_bias is a boolean that indicates whether the bias field has been set...) I have applied a patch to fix the bug. -- You are receiving this mail because: You are on the CC list for the bug.