Code

email plugin: fix check for result of malloc
[collectd.git] / src / email.c
index 0e34b89f4661a870fa2032868f0e902f5e87911a..ca4dbc2c34706405b7626be0e882559fef3d947c 100644 (file)
@@ -534,7 +534,7 @@ static void *open_connection (void __attribute__((unused)) *arg)
                }
 
                connection = malloc (sizeof (*connection));
-               if (connection != NULL)
+               if (connection == NULL)
                {
                        close (remote);
                        continue;