chiark / gitweb /
sd-rtnl: modernize a bit
authorTom Gundersen <teg@jklm.no>
Mon, 31 Mar 2014 12:43:34 +0000 (14:43 +0200)
committerTom Gundersen <teg@jklm.no>
Mon, 31 Mar 2014 12:43:34 +0000 (14:43 +0200)
src/libsystemd/sd-rtnl/sd-rtnl.c

index 9f3a4f3deaf759797f888798d57ccff66909317a..2ab9d90aa790d4f76360d6adc45111d2b6a6fe1b 100644 (file)
@@ -31,7 +31,7 @@
 #include "rtnl-util.h"
 
 static int sd_rtnl_new(sd_rtnl **ret) {
-        sd_rtnl *rtnl;
+        _cleanup_rtnl_unref_ sd_rtnl *rtnl = NULL;
 
         assert_return(ret, -EINVAL);
 
@@ -52,12 +52,12 @@ static int sd_rtnl_new(sd_rtnl **ret) {
         /* We guarantee that wqueue always has space for at least
          * one entry */
         rtnl->wqueue = new(sd_rtnl_message*, 1);
-        if (!rtnl->wqueue) {
-                free(rtnl);
+        if (!rtnl->wqueue)
                 return -ENOMEM;
-        }
 
         *ret = rtnl;
+        rtnl = NULL;
+
         return 0;
 }