trxcon/l1ctl.c: init DL info header in l1ctl_tx_rach_conf()

Since we only set both ARFCN and TDMA frame number of the DL info
header, other fields remain uninitialized. Let's memset() them.

Change-Id: Ib39c333f1724fefa5d8bd8a2315b77a5612f7fa9
This commit is contained in:
Vadim Yanitskiy 2019-05-09 22:08:28 +07:00
parent 2d94a4b71c
commit 1f07f3e34a
1 changed files with 2 additions and 0 deletions

View File

@ -244,6 +244,8 @@ int l1ctl_tx_rach_conf(struct l1ctl_link *l1l,
return -ENOMEM;
dl = put_dl_info_hdr(msg, NULL);
memset(dl, 0x00, sizeof(*dl));
dl->band_arfcn = htons(band_arfcn);
dl->frame_nr = htonl(fn);