Skip to content

Commit

Permalink
Merge pull request #20 from rtbrick/dev
Browse files Browse the repository at this point in the history
Fix UDP decode bug
  • Loading branch information
GIC-de committed Mar 12, 2021
2 parents fd00948 + 148c3fd commit a0cba9f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/bbl_protocols.c
Original file line number Diff line number Diff line change
Expand Up @@ -1558,6 +1558,7 @@ decode_udp(uint8_t *buf, uint16_t len,
udp->protocol = UDP_PROTOCOL_QMX_LI;
ret_val = decode_qmx_li(buf, len, sp, sp_len, (bbl_qmx_li_t**)&udp->next);
} else {
udp->protocol = 0;
udp->next = NULL;
}
break;
Expand Down

0 comments on commit a0cba9f

Please sign in to comment.