| Index: runtime/bin/extensions_macos.cc
|
| diff --git a/runtime/bin/extensions_macos.cc b/runtime/bin/extensions_macos.cc
|
| index d147d9d7e47d667dddbf3415f1b4e629a683f5b6..54f5c71b5881e3f060eaff966048a02f5c6788bb 100644
|
| --- a/runtime/bin/extensions_macos.cc
|
| +++ b/runtime/bin/extensions_macos.cc
|
| @@ -16,6 +16,7 @@ void* Extensions::LoadExtensionLibrary(const char* library_path,
|
| }
|
|
|
| void* Extensions::ResolveSymbol(void* lib_handle, const char* symbol) {
|
| + dlerror();
|
| void* result = dlsym(lib_handle, symbol);
|
| if (dlerror() != NULL) return NULL;
|
| return result;
|
|
|