summaryrefslogtreecommitdiffstats
path: root/net/dcb
diff options
context:
space:
mode:
authorThomas Graf2012-06-14 00:34:03 +0200
committerDavid S. Miller2012-06-14 10:45:46 +0200
commit39912f9cf9603f0de085fb5ba916a7a88010ccd9 (patch)
tree9ec17f11acc4f10cc1e823aed1c9dc834796347f /net/dcb
parentbonding: drop_monitor aware (diff)
downloadkernel-qcow2-linux-39912f9cf9603f0de085fb5ba916a7a88010ccd9.tar.gz
kernel-qcow2-linux-39912f9cf9603f0de085fb5ba916a7a88010ccd9.tar.xz
kernel-qcow2-linux-39912f9cf9603f0de085fb5ba916a7a88010ccd9.zip
dcbnl: Silence harmless gcc warning about uninitialized reply_nlh
Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dcb')
-rw-r--r--net/dcb/dcbnl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dcb/dcbnl.c b/net/dcb/dcbnl.c
index 70bba3eb4ae9..da6ee81ce51f 100644
--- a/net/dcb/dcbnl.c
+++ b/net/dcb/dcbnl.c
@@ -1664,7 +1664,7 @@ static int dcb_doit(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
u32 pid = skb ? NETLINK_CB(skb).pid : 0;
int ret = -EINVAL;
struct sk_buff *reply_skb;
- struct nlmsghdr *reply_nlh;
+ struct nlmsghdr *reply_nlh = NULL;
const struct reply_func *fn;
if (!net_eq(net, &init_net))