diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-10-05 12:33:13 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-10-05 17:26:06 +0200 |
commit | dfd044930689aa6d2af94d15d1372923c5302ffb (patch) | |
tree | 7ad9cc59c2d54c76c6b08d813f93d7730f0b45e7 /nDPId.c | |
parent | 07f2c2d9cc7e29b53de42c3849bc3c2e6b6b8fb9 (diff) |
Fix issues detected by SonarCloud.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'nDPId.c')
-rw-r--r-- | nDPId.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4252,7 +4252,7 @@ static void ndpi_process_packet(uint8_t * const args, free_detection_data(flow_to_process); flow_to_process->flow_extended.flow_basic.state = FS_FINISHED; - struct nDPId_flow * const flow = (struct nDPId_flow *)flow_to_process; + struct nDPId_flow * const flow = flow_to_process; flow->flow_extended.detected_l7_protocol = detected_l7_protocol; flow->finished.risk = risk; flow->finished.confidence = confidence; |