Merge pull request #367 from signalwire/libnatpmp

[libnatpmp] scan-build: The left operand of '!=' is a garbage value
This commit is contained in:
Andrey Volk 2020-02-16 00:08:46 +04:00 committed by GitHub
commit d32e7f1973
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ int sendnewportmappingrequest(natpmp_t * p, int protocol,
int readnatpmpresponse(natpmp_t * p, natpmpresp_t * response) int readnatpmpresponse(natpmp_t * p, natpmpresp_t * response)
{ {
unsigned char buf[16]; unsigned char buf[16];
struct sockaddr_in addr; struct sockaddr_in addr = {0};
socklen_t addrlen = sizeof(addr); socklen_t addrlen = sizeof(addr);
int n; int n;
if(!p) if(!p)