Merge "Prevent system crash when OOM in Binder thread."

This commit is contained in:
Jean-Baptiste Queru
2010-11-17 17:49:19 -08:00
committed by Android Code Review

View File

@@ -292,6 +292,10 @@ public class Binder implements IBinder {
} catch (RuntimeException e) {
reply.writeException(e);
res = true;
} catch (OutOfMemoryError e) {
RuntimeException re = new RuntimeException("Out of memory", e);
reply.writeException(re);
res = true;
}
reply.recycle();
data.recycle();