diff options
author | Tom Gundersen <teg@jklm.no> | 2014-07-03 09:43:31 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-07-03 11:00:01 +0200 |
commit | 563c69c6b2c2bd691352ef522cb9ec95c08a0c63 (patch) | |
tree | d16b86793b1f0406eff5408e90e5838389bfac23 /src/network/networkd-route.c | |
parent | 0372cb2bd2342fa5c5585c666f79159a8341f4a6 (diff) |
networkd: netdev - take ref immediately after calling out
Keeping the refcounting next to the sd_bus_call_async() makes it easier to check.
Diffstat (limited to 'src/network/networkd-route.c')
-rw-r--r-- | src/network/networkd-route.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/network/networkd-route.c b/src/network/networkd-route.c index d0a04ecfee..acfe3f023f 100644 --- a/src/network/networkd-route.c +++ b/src/network/networkd-route.c @@ -164,6 +164,8 @@ int route_drop(Route *route, Link *link, return r; } + link_ref(link); + return 0; } @@ -235,6 +237,8 @@ int route_configure(Route *route, Link *link, return r; } + link_ref(link); + return 0; } |