wok view amule/stuff/patches/MuleDebug.cpp-2.3.2 @ rev 24808

updated libmtp, libmtp-dev and mtp-tools (1.1.17 -> 1.1.19)
author Hans-G?nter Theisgen
date Tue Mar 22 16:29:00 2022 +0100 (2022-03-22)
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 }