diff --git a/core/java/android/os/Binder.java b/core/java/android/os/Binder.java index ff0bc69ed3257..b9e21196c73d6 100644 --- a/core/java/android/os/Binder.java +++ b/core/java/android/os/Binder.java @@ -683,6 +683,8 @@ public class Binder implements IBinder { Log.w(TAG, "Caught a RuntimeException from the binder stub implementation.", e); } } else { + // Clear the parcel before writing the exception + reply.setDataSize(0); reply.setDataPosition(0); reply.writeException(e); }