Skip to content
Snippets Groups Projects
Commit a8bd28cc authored by SAWADA Kentaro's avatar SAWADA Kentaro
Browse files

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

parent 69f68d13
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment