[haiku-commits] Re: haiku: hrev50625 - src/system/runtime_loader

  • From: Axel Dörfler <axeld@xxxxxxxxxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 29 Oct 2016 20:56:23 +0200

Am 29/10/2016 um 10:27 schrieb pulkomandy@xxxxxxxxxxxxx:

@@ -93,8 +93,18 @@ patch_undefined_symbol(image_t* rootImage, image_t* image, 
const char* name,
 }


+static bool is_symbol_visible(elf_sym* symbol)
+{
+       if (symbol->Bind() == STB_GLOBAL)
+               return true;

static bool
is_symbol_visible(elf_sym* symbol)
{
        [...]
}

Bye,
   Axel.

Other related posts: