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

Commit 68e16519 authored by Wei Jia's avatar Wei Jia Committed by android-build-merger
Browse files

Merge "android_media_MediaSync: Do not pass NULL to AString ctor." into nyc-dev am: c4e8471b

am: 613dc4cc

* commit '613dc4cc':
  android_media_MediaSync: Do not pass NULL to AString ctor.

Change-Id: I412def216bdb52238b560b0e575ff629473cc0a6
parents 4fa68011 613dc4cc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -159,7 +159,7 @@ static void throwExceptionAsNecessary(
            if (err > 0) {
                break;
            }
            AString msgWithErrorCode(msg);
            AString msgWithErrorCode(msg == NULL ? "" : msg);
            msgWithErrorCode.append(" error:");
            msgWithErrorCode.append(err);
            jniThrowException(env, "java/lang/IllegalStateException", msgWithErrorCode.c_str());