Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 43d44475 authored by Arthur Ishiguro's avatar Arthur Ishiguro
Browse files

Fix variable shadow compilation issue in BBinder::transact

Bug: 410035138
Flag: EXEMPT bug fix
Test: Compile
Change-Id: I413150daf417308f98db8edee5798aeec0b1a878
parent e6854a4c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -427,7 +427,7 @@ status_t BBinder::transact(
                    fromDetails(getInterfaceDescriptor(), code, flags, ts, data,
                                reply ? *reply : emptyReply, err);
            if (transaction) {
                if (status_t err = transaction->dumpToFile(e->mRecordingFd); err != NO_ERROR) {
                if (err = transaction->dumpToFile(e->mRecordingFd); err != NO_ERROR) {
                    ALOGI("Failed to dump RecordedTransaction to file with error %d", err);
                }
            } else {