aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/options.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2006-03-20 22:36:01 -0800
committerDavid S. Miller <davem@davemloft.net>2006-03-20 22:36:01 -0800
commitfb9504964d32f69e4381dc8895eeb8e81a32af72 (patch)
tree156bf7039f0502f823cf81cccd9ac8f8a1d83d95 /net/dccp/options.c
parent[NET]: sem2mutex part 2 (diff)
downloadlinux-dev-fb9504964d32f69e4381dc8895eeb8e81a32af72.tar.xz
linux-dev-fb9504964d32f69e4381dc8895eeb8e81a32af72.zip
[DCCP]: Fix uninitialized var warnings in dccp_parse_options().
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/options.c')
-rw-r--r--net/dccp/options.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/dccp/options.c b/net/dccp/options.c
index da1676016484..6e85550cc6f0 100644
--- a/net/dccp/options.c
+++ b/net/dccp/options.c
@@ -78,6 +78,7 @@ int dccp_parse_options(struct sock *sk, struct sk_buff *skb)
memset(opt_recv, 0, sizeof(*opt_recv));
+ opt = len = 0;
while (opt_ptr != opt_end) {
opt = *opt_ptr++;
len = 0;