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

Commit 0697e7ce authored by Hui Peng's avatar Hui Peng Committed by Automerger Merge Worker
Browse files

Merge "Fix an OOB bug in on_remove_iso_data_path" into tm-dev am: b8354c4e...

Merge "Fix an OOB bug in on_remove_iso_data_path" into tm-dev am: b8354c4e am: 7c4bb1a3 am: a9587bd3

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/modules/Bluetooth/+/21148481



Change-Id: I61fee01ceec71adcdc29a56ba2f68e318e291571
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 4a0a21a5 a9587bd3
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -367,6 +367,10 @@ struct iso_impl {
    uint8_t status;
    uint16_t conn_handle;

    if (len < 3) {
      LOG(WARNING) << __func__ << "Malformatted packet received";
      return;
    }
    STREAM_TO_UINT8(status, stream);
    STREAM_TO_UINT16(conn_handle, stream);