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

Commit 4cf5ccb0 authored by Yi Kong's avatar Yi Kong Committed by Gerrit Code Review
Browse files

Merge "Fix use of uninitialised variable"

parents 14a95871 5ea78960
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -245,7 +245,7 @@ void hci_close() {
}

void hci_transmit(BT_HDR* packet) {
  uint8_t type;
  uint8_t type = 0;

  CHECK(bt_vendor_fd != -1);