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

Up nettle 3.7.3 again, need glib-networking rebuild to no break midori
author Stanislas Leduc <shann@slitaz.org>
date Wed May 11 08:28:28 2022 -0400 (2022-05-11)
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 }