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

Commit 265f0d9d authored by Dan Albert's avatar Dan Albert Committed by Android Git Automerger
Browse files

am 6ee97e74: Merge "Fix a null dereference."

* commit '6ee97e74':
  Fix a null dereference.
parents 7a99e281 6ee97e74
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -114,7 +114,7 @@ status_t BnSurfaceComposerClient::onTransact(
            status_t result = createSurface(name, w, h, format, flags,
                    &handle, &gbp);
            reply->writeStrongBinder(handle);
            reply->writeStrongBinder(gbp->asBinder());
            reply->writeStrongBinder(gbp != NULL ? gbp->asBinder() : NULL);
            reply->writeInt32(result);
            return NO_ERROR;
        } break;