enb_interface: add default initialize to zero

This commit is contained in:
Andre Puschmann 2020-05-15 16:50:36 +02:00
parent 65ef16c7f1
commit 8756d14660
1 changed files with 3 additions and 3 deletions

View File

@ -47,9 +47,9 @@ public:
* DL grant structure per UE
*/
typedef struct {
srslte_dci_dl_t dci;
uint8_t* data[SRSLTE_MAX_TB];
srslte_softbuffer_tx_t* softbuffer_tx[SRSLTE_MAX_TB];
srslte_dci_dl_t dci = {};
uint8_t* data[SRSLTE_MAX_TB] = {};
srslte_softbuffer_tx_t* softbuffer_tx[SRSLTE_MAX_TB] = {};
} dl_sched_grant_t;
/**