Hoernchen has uploaded this change for review.

View Change

ms: init trash used to escape the usb callbacks

Change-Id: I1b41350f981bd9f68163509b94d5457218b415d6
---
M Transceiver52M/ms/ms_upper.cpp
1 file changed, 2 insertions(+), 2 deletions(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/96/30796/1
diff --git a/Transceiver52M/ms/ms_upper.cpp b/Transceiver52M/ms/ms_upper.cpp
index e59aeae..281716e 100644
--- a/Transceiver52M/ms/ms_upper.cpp
+++ b/Transceiver52M/ms/ms_upper.cpp
@@ -449,8 +449,8 @@

// we know the flag is atomic and it prevents the trxcon cb handlers from writing
// to the queues, so submit some trash to unblock the threads & exit
- trxcon::trxcon_phyif_cmd cmd;
- trxcon::internal_q_tx_buf b;
+ trxcon::trxcon_phyif_cmd cmd = {};
+ trxcon::internal_q_tx_buf b = {};
trxcon::txq.spsc_push(&b);
trxcon::cmdq_to_phy.spsc_push(&cmd);


To view, visit change 30796. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: I1b41350f981bd9f68163509b94d5457218b415d6
Gerrit-Change-Number: 30796
Gerrit-PatchSet: 1
Gerrit-Owner: Hoernchen <ewild@sysmocom.de>
Gerrit-MessageType: newchange