From: Ingo Molnar Date: Wed, 26 Nov 2008 00:57:30 +0000 (-0800) Subject: dccp: fix warning in net/dccp/options.c X-Git-Tag: v2.6.29-rc1~581^2~466 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ed7cc0f8b29da4304825a7bcef25fc83f84c1ae;p=pandora-kernel.git dccp: fix warning in net/dccp/options.c this warning: net/dccp/options.c: In function ‘dccp_parse_options’: net/dccp/options.c:67: warning: ‘value’ may be used uninitialized in this function is a bogus GCC warning. The compiler does not recognize the relation between "value" and "mandatory" variables: the code flow can ever reach the "out_invalid_option:" label if 'mandatory' is set to 1, and when 'mandatory' is non-zero, we'll always have 'value' initialized. Help out the compiler by annotating the variable. Signed-off-by: Ingo Molnar Signed-off-by: David S. Miller --- Reading git-diff-tree failed