diff options
author | davilla <davilla@xbmc.org> | 2013-08-31 07:00:14 -0700 |
---|---|---|
committer | davilla <davilla@xbmc.org> | 2013-08-31 07:00:14 -0700 |
commit | 2435cf3c37bbf3322ba95d63ddd4dde744591a7b (patch) | |
tree | 1a441bd32cb83295a0f36fca8d404fbd3a1eea52 | |
parent | bcb4338272b550b45e159b34075d575c845b0ae0 (diff) | |
parent | d5b75642d1a4797d5e2180fb77bdb9626f30d8fd (diff) |
Merge pull request #3139 from garbear/seeing-double
[android] Fixed missing error message in debug log, "Unable to load '.so file', reason: (null)"
-rw-r--r-- | xbmc/android/loader/AndroidDyload.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/xbmc/android/loader/AndroidDyload.cpp b/xbmc/android/loader/AndroidDyload.cpp index 8f6958a592..6037256ca4 100644 --- a/xbmc/android/loader/AndroidDyload.cpp +++ b/xbmc/android/loader/AndroidDyload.cpp @@ -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); |