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

Patch for windows debugger to load libraries #4113

Merged
merged 3 commits into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion librz/debug/p/debug_native.c
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ static RzDebugReasonType rz_debug_native_wait(RzDebug *dbg, int pid) {
rz_bin_file_set_cur_binfile(core->bin, cur);
}
} else {
RZ_LOG_VERBOSE("The library %s does not exist.\n", lib->Path);
RZ_LOG_ERROR("The library %s does not exist.\n", lib->Path);
}
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion librz/debug/p/native/windows/windows_debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ static char *get_file_name_from_handle(HANDLE handle_file) {
CloseHandle(handle_file_map);
}
if (filename) {
char *ret = rz_sys_conv_win_to_utf8(filename);
char *ret = rz_utf16_to_utf8(filename);
free(filename);
return ret;
}
Expand Down
Loading