nat: Address coverity warning about uninitialized addr

Use memset on the addr to initialize the entire structure.

Fixes: Coverity CID 1042324
diff --git a/openbsc/src/osmo-bsc_nat/bsc_mgcp_utils.c b/openbsc/src/osmo-bsc_nat/bsc_mgcp_utils.c
index c37daa7..8bb6075 100644
--- a/openbsc/src/osmo-bsc_nat/bsc_mgcp_utils.c
+++ b/openbsc/src/osmo-bsc_nat/bsc_mgcp_utils.c
@@ -934,6 +934,7 @@
 	on = 1;
 	setsockopt(cfg->gw_fd.bfd.fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
 
+	memset(&addr, 0, sizeof(addr));
 	addr.sin_family = AF_INET;
 	addr.sin_port = htons(cfg->source_port);
 	inet_aton(cfg->source_addr, &addr.sin_addr);