commit | fb9504964d32f69e4381dc8895eeb8e81a32af72 | [log] [tgz] |
---|---|---|
author | David S. Miller <davem@davemloft.net> | Mon Mar 20 22:36:01 2006 -0800 |
committer | David S. Miller <davem@davemloft.net> | Mon Mar 20 22:36:01 2006 -0800 |
tree | 156bf7039f0502f823cf81cccd9ac8f8a1d83d95 | |
parent | 57b47a53ec4a67691ba32cff5768e8d78fa6c67f [diff] [blame] |
[DCCP]: Fix uninitialized var warnings in dccp_parse_options(). Signed-off-by: David S. Miller <davem@davemloft.net>
diff --git a/net/dccp/options.c b/net/dccp/options.c index da16760..6e85550 100644 --- a/net/dccp/options.c +++ b/net/dccp/options.c
@@ -78,6 +78,7 @@ memset(opt_recv, 0, sizeof(*opt_recv)); + opt = len = 0; while (opt_ptr != opt_end) { opt = *opt_ptr++; len = 0;