forked from pool/elfutils
Marcus Meissner
30c1ed46a3
update and adding aarch64 patch. Do not break aarch64 libs during debuginfo generation anymore. OBS-URL: https://build.opensuse.org/request/show/143389 OBS-URL: https://build.opensuse.org/package/show/Base:System/elfutils?expand=0&rev=45
16 lines
547 B
Diff
16 lines
547 B
Diff
Index: elfutils-0.155/libdwfl/linux-kernel-modules.c
|
|
===================================================================
|
|
--- elfutils-0.155.orig/libdwfl/linux-kernel-modules.c
|
|
+++ elfutils-0.155/libdwfl/linux-kernel-modules.c
|
|
@@ -601,8 +601,8 @@ check_module_notes (Dwfl_Module *mod)
|
|
int
|
|
dwfl_linux_kernel_report_kernel (Dwfl *dwfl)
|
|
{
|
|
- Dwarf_Addr start;
|
|
- Dwarf_Addr end;
|
|
+ Dwarf_Addr start = 0;
|
|
+ Dwarf_Addr end = 0;
|
|
inline Dwfl_Module *report (void)
|
|
{
|
|
return INTUSE(dwfl_report_module) (dwfl, KERNEL_MODNAME, start, end);
|