Merge "Handle BR_FROZEN_REPLY in libhwbinder" into main
diff --git a/IPCThreadState.cpp b/IPCThreadState.cpp index e7e2190..7393cb6 100644 --- a/IPCThreadState.cpp +++ b/IPCThreadState.cpp
@@ -822,6 +822,10 @@ ALOGW("Sending oneway calls to frozen process."); goto finish; + case BR_FROZEN_REPLY: + err = FAILED_TRANSACTION; + goto finish; + case BR_DEAD_REPLY: err = DEAD_OBJECT; goto finish;