Skip to content
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

Fix windows debug plugin #4099

Merged
merged 1 commit into from
Jan 13, 2024
Merged

Fix windows debug plugin #4099

merged 1 commit into from
Jan 13, 2024

Conversation

imbillow
Copy link
Contributor

Your checklist for this pull request

  • I've read the guidelines for contributing to this repository
  • I made sure to follow the project's coding style
  • I've documented or updated the documentation of every function and struct this PR changes. If not so I've explained why.
  • I've added tests that prove my fix is effective or that my feature works (if possible)
  • I've updated the rizin book with the relevant information (if needed)

Detailed description

No longer loads the windows library file when it doesn't exist.

#3625 (comment)

Test plan

...

Closing issues

...

@@ -809,7 +809,7 @@ static void add_library(DWORD pid, LPVOID lpBaseOfDll, HANDLE hFile, char *dllna
}

static void *last_library(void) {
return rz_list_get_tail_data(lib_list);
return lib_list ? rz_list_get_tail_data(lib_list) : NULL;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Uh. Globals...
Not in this PR though. Thanks for the fix!

@gogo2464
Copy link
Contributor

when should it be ready please? I need it for work.

@XVilka XVilka merged commit acace32 into dev Jan 13, 2024
49 of 50 checks passed
@XVilka XVilka deleted the fix-windows-debug-p branch January 13, 2024 00:16
@gogo2464
Copy link
Contributor

May be closed after #4099

BUt I had open another issue #4107

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants