Commit a8bd28cc authored by SAWADA Kentaro's avatar SAWADA Kentaro

ReFix Coverity Scan CID 340288 (Using uninitialized value slen when calling getsockname.)

parent 69f68d13
......@@ -230,7 +230,7 @@ socket_link_t *new_link_udp_client(const char *server, int port){
struct sockaddr_in si_other;
int s;
socklen_t slen = 0;
socklen_t slen = sizeof(si_other);
if ( (s=socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) == -1){
goto error;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment