summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-10-23 10:25:57 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-10-23 10:25:57 -0700
commite7329bd564e7c5f671b786dc7d0cc684d6d11fca (patch)
tree0a43b220ba7728524f66d1a82982065d52cad04c /media
parent9857473f48abf1333ddd3454ab3c916b4e69daa4 (diff)
parentd5255d1de125d15afae6cfc35701a5255b5e2933 (diff)
downloadframeworks_av-e7329bd564e7c5f671b786dc7d0cc684d6d11fca.zip
frameworks_av-e7329bd564e7c5f671b786dc7d0cc684d6d11fca.tar.gz
frameworks_av-e7329bd564e7c5f671b786dc7d0cc684d6d11fca.tar.bz2
am d5255d1d: Merge "If dlopen("libwvm.so") fails, log the reason why."
* commit 'd5255d1de125d15afae6cfc35701a5255b5e2933': If dlopen("libwvm.so") fails, log the reason why.
Diffstat (limited to 'media')
-rw-r--r--media/libstagefright/WVMExtractor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/WVMExtractor.cpp b/media/libstagefright/WVMExtractor.cpp
index 5ae80cc..bc48272 100644
--- a/media/libstagefright/WVMExtractor.cpp
+++ b/media/libstagefright/WVMExtractor.cpp
@@ -76,7 +76,7 @@ static void init_routine()
{
gVendorLibHandle = dlopen("libwvm.so", RTLD_NOW);
if (gVendorLibHandle == NULL) {
- ALOGE("Failed to open libwvm.so");
+ ALOGE("Failed to open libwvm.so: %s", dlerror());
}
}