summaryrefslogtreecommitdiff
path: root/src/components/transport_manager/include/transport_manager
diff options
context:
space:
mode:
authorjacobkeeler <jacob.keeler@livioradio.com>2018-09-28 09:44:01 -0400
committerjacobkeeler <jacob.keeler@livioradio.com>2018-09-28 09:44:01 -0400
commit0c32601453970fa16798d3d917b360c0a8ac3c02 (patch)
tree3636c29c2b8e29821878f6ad6878b1a969b30909 /src/components/transport_manager/include/transport_manager
parent35defc42777c57412cbf8b793489ab0dac502f4e (diff)
downloadsdl_core-0c32601453970fa16798d3d917b360c0a8ac3c02.tar.gz
Fix uninitialized membersfix/coverity_fixes_5.0.0
CIDs 188281, 188276, 188250, 188245, 188239
Diffstat (limited to 'src/components/transport_manager/include/transport_manager')
-rw-r--r--src/components/transport_manager/include/transport_manager/tcp/platform_specific/linux/platform_specific_network_interface_listener_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/transport_manager/include/transport_manager/tcp/platform_specific/linux/platform_specific_network_interface_listener_impl.h b/src/components/transport_manager/include/transport_manager/tcp/platform_specific/linux/platform_specific_network_interface_listener_impl.h
index fd90cb0f22..bb60b09a9d 100644
--- a/src/components/transport_manager/include/transport_manager/tcp/platform_specific/linux/platform_specific_network_interface_listener_impl.h
+++ b/src/components/transport_manager/include/transport_manager/tcp/platform_specific/linux/platform_specific_network_interface_listener_impl.h
@@ -137,7 +137,7 @@ class PlatformSpecificNetworkInterfaceListener
struct sockaddr_storage address;
EventParam(int interface_index, unsigned int interface_flags = 0)
- : if_index(interface_index), flags(interface_flags) {}
+ : if_index(interface_index), flags(interface_flags), address() {}
};
// parent class which we will notify the events to