You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This also seems to include Calls on expressions, like a + 1() should be (a +1)().
rihi
changed the title
[CExpressionGenerator] MemberAccess on complex expression is missing parentheses
[CExpressionGenerator] MemberAccess/Call on complex expression is missing parentheses
Nov 22, 2023
When a member access happens on a complex expression like
var + 1
, the outputted c code is missing a parentheses likevar + 1->member
.Relevant code: https://github.com/fkie-cad/dewolf/blob/0ff5502be6de63db3a8f5e023495e3d2a8c3a0ee/decompiler/backend/cexpressiongenerator.py#L168C1-L172
The text was updated successfully, but these errors were encountered: