Browse Source

fix pecoff build

meson_expose_so_info
Alexandros Theodotou 2 years ago
parent
commit
836dc2ab95
Signed by: alex
GPG Key ID: 022EAE42313D70F3
  1. 4
      pecoff.c

4
pecoff.c

@ -569,9 +569,9 @@ coff_syminfo (struct backtrace_state *state, uintptr_t addr, @@ -569,9 +569,9 @@ coff_syminfo (struct backtrace_state *state, uintptr_t addr,
}
if (sym == NULL)
callback (data, addr, NULL, 0, 0);
callback (data, addr, NULL, 0, 0, 0, 0);
else
callback (data, addr, sym->name, sym->address, 0);
callback (data, addr, sym->name, sym->address, 0, 0, 0);
}
/* Add the backtrace data for one PE/COFF file. Returns 1 on success,

Loading…
Cancel
Save