Fix stupid mistake in binderInitSession error cleanup code

This commit is contained in:
fincs 2019-06-07 03:14:41 +02:00
parent 3e39f97fe5
commit 77f1d357e5

View File

@ -34,7 +34,7 @@ Result binderInitSession(Binder* b)
rc = binderIncreaseStrongRef(b);
if (R_FAILED(rc)) {
binderDecreaseStrongRef(b);
binderDecreaseWeakRef(b);
return rc;
}