Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a77f7031 authored by Elliott Hughes's avatar Elliott Hughes
Browse files

If dlopen("libwvm.so") fails, log the reason why.

Bug: 11342992
Change-Id: I99986b6181df6d7615fdc1520d2edaadaccd9bb4
parent 0f4b0d23
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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());
    }
}