We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eed52f commit 25bfeb1Copy full SHA for 25bfeb1
libr/core/canal.c
@@ -65,7 +65,8 @@ static RVecRCoreSecRange *r_core_get_sec_ranges(RCore *core) {
65
if (to <= from) {
66
continue;
67
}
68
- if (section->perm & R_PERM_W) {
+ // Skip writable sections unless they contain strings
69
+ if ((section->perm & R_PERM_W) && !section->has_strings) {
70
71
72
RCoreSecRange r = {
0 commit comments