1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
From a6a4981616b669432ff7b588179d6e93694d9e3f Mon Sep 17 00:00:00 2001
From: Jose <jose@zeroc.com>
Date: Mon, 4 Jun 2018 20:46:16 +0000
Subject: Remove unnecessary memset
---
cpp/src/Ice/NetworkProxy.cpp | 2 --
1 file changed, 2 deletions(-)
(limited to 'cpp/src/Ice/NetworkProxy.cpp')
diff --git a/cpp/src/Ice/NetworkProxy.cpp b/cpp/src/Ice/NetworkProxy.cpp
index c2630b380d..4c974e0465 100644
--- a/cpp/src/Ice/NetworkProxy.cpp
+++ b/cpp/src/Ice/NetworkProxy.cpp
@@ -81,7 +81,6 @@ private:
SOCKSNetworkProxy::SOCKSNetworkProxy(const string& host, int port) : _host(host), _port(port)
{
assert(!host.empty());
- memset(&_address, 0, sizeof(_address));
}
SOCKSNetworkProxy::SOCKSNetworkProxy(const Address& addr) : _port(0), _address(addr)
@@ -194,7 +193,6 @@ HTTPNetworkProxy::HTTPNetworkProxy(const string& host, int port) :
_host(host), _port(port), _protocol(EnableBoth)
{
assert(!host.empty());
- memset(&_address, 0, sizeof(_address));
}
HTTPNetworkProxy::HTTPNetworkProxy(const Address& addr, ProtocolSupport protocol) :
--
cgit v1.2.1
|