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

Commit 81551435 authored by Rakesh Kumar's avatar Rakesh Kumar Committed by android-build-merger
Browse files

Merge "NdkMediaCodec: Wrong check in error callback handler"

am: 49a4f52e

Change-Id: I9e2acddec99706b3bfe763d85051b0f13e99b363
parents 77a9db4b 49a4f52e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -244,8 +244,8 @@ void CodecHandler::onMessageReceived(const sp<AMessage> &msg) {
                         ALOGE("CB_ERROR: err is expected.");
                         break;
                     }
                     if (!msg->findInt32("action", &actionCode)) {
                         ALOGE("CB_ERROR: action is expected.");
                     if (!msg->findInt32("actionCode", &actionCode)) {
                         ALOGE("CB_ERROR: actionCode is expected.");
                         break;
                     }
                     msg->findString("detail", &detail);