diff options
author | Tom Gundersen <teg@jklm.no> | 2014-09-01 22:59:52 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-09-01 22:59:52 +0200 |
commit | cedc611207b6a14cdbaf1d73e12b62ee55cc53de (patch) | |
tree | bfc79cdf44ab9a057030f025af9b24a99bb6e51c /src | |
parent | 70e7d754ddb356fb1a2942b262f8cee9650e2a19 (diff) |
sd-rtnl: don't assign to unused variable
Reported by Thomas H.P. Andersen <phomes@gmail.com>.
Diffstat (limited to 'src')
-rw-r--r-- | src/libsystemd/sd-rtnl/rtnl-message.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libsystemd/sd-rtnl/rtnl-message.c b/src/libsystemd/sd-rtnl/rtnl-message.c index 906a9de1c0..30e33584c4 100644 --- a/src/libsystemd/sd-rtnl/rtnl-message.c +++ b/src/libsystemd/sd-rtnl/rtnl-message.c @@ -531,7 +531,6 @@ static int add_rtattr(sd_rtnl_message *m, unsigned short type, const void *data, /* if no data was passed, make sure we still initialize the padding note that we can have data_length > 0 (used by some containers) */ padding = RTA_DATA(rta); - data_length = 0; } /* make sure also the padding at the end of the message is initialized */ |