find_undefined_symbol_beos(): Forgot to return the image in the code

introduced in r40211.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40228 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2011-01-12 22:43:01 +00:00
parent 80ddd8dafc
commit cd463b4dd2
1 changed files with 1 additions and 0 deletions

View File

@ -307,6 +307,7 @@ find_undefined_symbol_beos(image_t* rootImage, image_t* image,
if (symbol->st_shndx != SHN_UNDEF
&& ((ELF32_ST_BIND(symbol->st_info) == STB_GLOBAL)
|| (ELF32_ST_BIND(symbol->st_info) == STB_WEAK))) {
*foundInImage = image;
return symbol;
}
}