bug-binutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug binutils/29038] Debug info for function in Windows PE binary on wro


From: nickc at redhat dot com
Subject: [Bug binutils/29038] Debug info for function in Windows PE binary on wrong instruction
Date: Fri, 08 Apr 2022 15:07:04 +0000

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.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]