Skip to content

Control on udp_address conversion

pieretti requested to merge hotfix/udp_address_control into master

In its_bridge_client.c:176 there is no check about return value of inet_pton function (return 1 on success). So, if in the config the udp_address is not written correct, the bridge tries to send udp messages to address 0.0.0.0.

Solution: added check to return value of inet_pton function.

Merge request reports