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

Commit e382bd7f authored by Jakub Tyszkowski's avatar Jakub Tyszkowski
Browse files

BassClient: Fix nullptr on BluetoothLeBroadcastSubgroup creation

Bug: 150670922
Sponsor: jpawlowski@
Test: tested manually
Change-Id: I46b03d020dc3913c73f5804aa5356370a3ae6f4c
parent 10923d58
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -104,9 +104,9 @@ class BaseData {
            presentationDelay = new byte[3];
            codecId = new byte[5];
            codecConfigLength = 0;
            codecConfigInfo = null;
            codecConfigInfo = new byte[0];
            metaDataLength = 0;
            metaData = null;
            metaData = new byte[0];
            numSubGroups = 0;
            bisIndices = null;
            index = (byte) 0xFF;