diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2014-08-21 11:16:15 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2014-08-21 11:16:15 -0230 |
commit | 02c969e9d14684bd3aa881682aa42ff597867caf (patch) | |
tree | bd16fc92df65d98d16584f08be9d2ff3dc632b5f /cpp/src/Ice/UdpTransceiver.cpp | |
parent | ICE-5646 check return value of backtrace_symbols before processing (diff) | |
download | ice-02c969e9d14684bd3aa881682aa42ff597867caf.tar.bz2 ice-02c969e9d14684bd3aa881682aa42ff597867caf.tar.xz ice-02c969e9d14684bd3aa881682aa42ff597867caf.zip |
ICE-5638 add default constructor for Address union
Diffstat (limited to 'cpp/src/Ice/UdpTransceiver.cpp')
-rw-r--r-- | cpp/src/Ice/UdpTransceiver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/UdpTransceiver.cpp b/cpp/src/Ice/UdpTransceiver.cpp index 18ea62ffe47..932c04282ee 100644 --- a/cpp/src/Ice/UdpTransceiver.cpp +++ b/cpp/src/Ice/UdpTransceiver.cpp @@ -327,10 +327,10 @@ repeat: assert(_incoming); // Client connections should always be connected at this point. # ifndef NDEBUG - bool connected = doConnect(_fd, _peerAddr, getInvalidAddress()); + bool connected = doConnect(_fd, _peerAddr, Address()); assert(connected); # else - doConnect(_fd, _peerAddr, getInvalidAddress()); + doConnect(_fd, _peerAddr, Address()); # endif _state = StateConnected; |