mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-14 02:57:47 +01:00
Merge pull request #2182 from pmienk/master
Suppress warning on uninitialized variable use by initializing variable.
This commit is contained in:
commit
50a6c117f1
@ -182,7 +182,7 @@ int zmq::tcp_address_t::resolve_nic_name (const char *nic_, bool ipv6_, bool is_
|
|||||||
{
|
{
|
||||||
// Get the addresses.
|
// Get the addresses.
|
||||||
ifaddrs *ifa = NULL;
|
ifaddrs *ifa = NULL;
|
||||||
int rc;
|
int rc = 0;
|
||||||
const int max_attempts = 10;
|
const int max_attempts = 10;
|
||||||
const int backoff_msec = 1;
|
const int backoff_msec = 1;
|
||||||
for (int i = 0; i < max_attempts; i++) {
|
for (int i = 0; i < max_attempts; i++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user