Skip to content

Commit

Permalink
Merge pull request #3139 from garbear/seeing-double
Browse files Browse the repository at this point in the history
[android] Fixed missing error message in debug log, "Unable to load '.so file', reason: (null)"
  • Loading branch information
davilla committed Aug 31, 2013
2 parents bcb4338 + d5b7564 commit 2435cf3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions xbmc/android/loader/AndroidDyload.cpp
Expand Up @@ -266,9 +266,6 @@ void* CAndroidDyload::Open_Internal(string filename, bool checkSystem)

handle = dlopen(path.c_str(), RTLD_LOCAL);

if (handle == NULL)
CXBMCApp::android_printf("xb_dlopen: Error from dlopen(%s): %s", path.c_str(), dlerror());

recursivelibdep dep;
dep.handle = handle;
dep.filename = filename.substr(filename.find_last_of('/') +1);
Expand Down

0 comments on commit 2435cf3

Please sign in to comment.