am 066e1e3c: am dbf09fee: am eb17d6f5: Merge "Don\'t crash zygote if webcore fails to load"

* commit '066e1e3cc6a0a3f2fbf672b82f8e3317574b86da':
  Don't crash zygote if webcore fails to load
This commit is contained in:
Jean-Baptiste Queru
2011-02-01 14:48:21 -08:00
committed by Android Git Automerger

View File

@@ -56,7 +56,11 @@ final class WebViewCore {
// Load libwebcore during static initialization. This happens in the
// zygote process so it will be shared read-only across all app
// processes.
System.loadLibrary("webcore");
try {
System.loadLibrary("webcore");
} catch (UnsatisfiedLinkError e) {
Log.e(LOGTAG, "Unable to load webcore library");
}
}
/*