-
-
Notifications
You must be signed in to change notification settings - Fork 398
Add some missing reloc types #4964
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Conversation
@themadbit see |
66e6bdd
to
1a7b7f5
Compare
@@ -1226,15 +1239,77 @@ static void patch_reloc(struct Elf_(rz_bin_elf_obj_t) * obj, RzBinElfReloc *rel, | |||
} | |||
break; | |||
} | |||
case EM_386: | |||
case EM_386: { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You forgot to add matching braces https://github.com/rizinorg/rizin/actions/runs/13719510808/job/38394910555?pr=4964#step:12:1947
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't forget to extract the inner switch into a function
Ping? |
Your checklist for this pull request
RZ_API
function and struct this PR changes.RZ_API
).Detailed description
Added some missing R_386_ reloc types.
Test plan
I'm still figuring out how to write the test for the changes. Some guidance on the same would be appreciated.
Related to #4699