wok-current view amule/stuff/patches/MuleDebug.cpp-2.3.2 @ rev 25176
updated python-formalchemy (1.5.5 -> 1.5.6)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Jul 01 17:52:21 2022 +0100 (2022-07-01) |
parents | |
children |
line source
1 --- src/libs/common/MuleDebug.cpp.orig
2 +++ src/libs/common/MuleDebug.cpp
3 @@ -268,7 +268,7 @@
4 return;
5 }
7 - bfd_vma vma = bfd_get_section_vma(abfd, section);
8 + bfd_vma vma = bfd_section_vma(section);
10 unsigned long address = (unsigned long)_address;
11 if (address < vma) {
12 @@ -275,7 +275,7 @@
13 return;
14 }
16 - bfd_size_type size = bfd_section_size(abfd, section);
17 + bfd_size_type size = bfd_section_size(section);
18 if (address > (vma + size)) {
19 return;
20 }