ANDROID: binder: fix regression in sender_euid

A recent change to use proc->cred instead of proc->tsk as the source
for sender_euid caused a failure in the CredentialsTest#CaptureLayersTest
test. Revert 1 line of the patch to fix the test. The rest of the patch
needs to remain since the subsequent patches rely on it.

Before fixing upstream, we need to investigate more since the code looks
correct so the issue may be a latent userspace bug.

Bug: 205938623
Fixes: d65efd5b73dc ("UPSTREAM: binder: use euid from cred instead of using task")
Signed-off-by: Todd Kjos <tkjos@google.com>
Change-Id: I16543a50f43f79131234995fb0813de00795bd3d
diff --git a/drivers/android/binder.c b/drivers/android/binder.c
index 6c60d8b..33beb02 100644
--- a/drivers/android/binder.c
+++ b/drivers/android/binder.c
@@ -2836,7 +2836,7 @@
 		t->from = thread;
 	else
 		t->from = NULL;
-	t->sender_euid = binder_get_cred(proc)->euid;
+	t->sender_euid = task_euid(proc->tsk);
 	t->to_proc = target_proc;
 	t->to_thread = target_thread;
 	t->code = tr->code;