mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00

The dependencies in the repo doesn't meet the minimum requirements for
upgrading to the latest aMule version.
This reverts commit dc43ea2936
.
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
20 lines
523 B
Diff
20 lines
523 B
Diff
--- a/src/libs/common/MuleDebug.cpp 2016-10-06 18:49:44.000000000 +0800
|
|
+++ b/src/libs/common/MuleDebug.cpp 2021-06-17 02:16:40.000000000 +0800
|
|
@@ -268,14 +268,14 @@
|
|
return;
|
|
}
|
|
|
|
- bfd_vma vma = bfd_get_section_vma(abfd, section);
|
|
+ bfd_vma vma = bfd_section_vma(section);
|
|
|
|
unsigned long address = (unsigned long)_address;
|
|
if (address < vma) {
|
|
return;
|
|
}
|
|
|
|
- bfd_size_type size = bfd_section_size(abfd, section);
|
|
+ bfd_size_type size = bfd_section_size(section);
|
|
if (address > (vma + size)) {
|
|
return;
|
|
}
|