1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2025-01-07 09:53:42 +01:00

Fix in proc info searching

This commit is contained in:
Alexander Esilevich 2010-09-15 00:00:25 +07:00
parent 262fa7f56e
commit 91d4e65da7

View file

@ -752,6 +752,9 @@ find_proc_fde (unw_word_t ip, unw_word_t *fde_addr,
ret = dl_iterate_phdr (callback, &cb_data);
sigprocmask (SIG_SETMASK, &saved_mask, NULL);
if (ret < 0)
return ret;
if (ret == 0)
{
ret = -UNW_ENOINFO;