diff options
author | Alex Murray <[email protected]> | 2010-06-29 00:29:02 +0930 |
---|---|---|
committer | monsta <[email protected]> | 2015-07-10 11:07:05 +0300 |
commit | 8d5752eae7010d626f76c5f7fbd3d19861841bfe (patch) | |
tree | f14b034912aad9c736d1a7352b5dcfc00325fe07 /plugins/hddtemp/hddtemp-plugin.c | |
parent | 22e467495f3953d8537ebd4b33ccb584918b3e23 (diff) | |
download | mate-sensors-applet-8d5752eae7010d626f76c5f7fbd3d19861841bfe.tar.bz2 mate-sensors-applet-8d5752eae7010d626f76c5f7fbd3d19861841bfe.tar.xz |
hddtemp-plugin: close socket fd if connect fails to avoid leaking fd
Diffstat (limited to 'plugins/hddtemp/hddtemp-plugin.c')
-rw-r--r-- | plugins/hddtemp/hddtemp-plugin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/hddtemp/hddtemp-plugin.c b/plugins/hddtemp/hddtemp-plugin.c index af37bb3..8fdd6a3 100644 --- a/plugins/hddtemp/hddtemp-plugin.c +++ b/plugins/hddtemp/hddtemp-plugin.c @@ -97,6 +97,7 @@ static const gchar *hddtemp_plugin_query_hddtemp_daemon(GError **error) { if (connect(sockfd, (struct sockaddr *)&address, (socklen_t)sizeof(address)) == -1) { g_set_error(error, SENSORS_APPLET_PLUGIN_ERROR, HDDTEMP_SOCKET_CONNECT_ERROR, "Error connecting to hddtemp daemon on port %i on %s", htons(HDDTEMP_PORT_NUMBER), HDDTEMP_SERVER_IP_ADDRESS); + close(sockfd); return NULL; } memset(buffer, 0, sizeof(buffer)); |