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

Commit 84ed074c 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...

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

* commit '68e8d86b':
  android_media_MediaSync: Do not pass NULL to AString ctor.

Change-Id: I363fa893c1e895168c9a41293a167f606f289c2e
parents 9770cdc5 68e8d86b
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());