diff options
author | Jeff Mahoney <jeffm@suse.com> | 2016-04-04 14:15:23 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2016-04-06 15:10:25 +0200 |
commit | b4201cc4fc6e1c57d6d306b1f787865043d60129 (patch) | |
tree | d035ab25e1fdcb06bcad0f95e4ab1bf4398a17af /net | |
parent | f6d4671a08810ff5111099dd1febe57e7eb9ba59 (diff) | |
download | linux-next-b4201cc4fc6e1c57d6d306b1f787865043d60129.tar.gz |
mac80211: fix "warning: ‘target_metric’ may be used uninitialized"
This fixes:
net/mac80211/mesh_hwmp.c:603:26: warning: ‘target_metric’ may be used uninitialized in this function
target_metric is only consumed when reply = true so no bug exists here,
but not all versions of gcc realize it. Initialize to 0 to remove the
warning.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/mac80211/mesh_hwmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/mesh_hwmp.c b/net/mac80211/mesh_hwmp.c index 5b6aec1a0630..002244bca948 100644 --- a/net/mac80211/mesh_hwmp.c +++ b/net/mac80211/mesh_hwmp.c @@ -530,7 +530,7 @@ static void hwmp_preq_frame_process(struct ieee80211_sub_if_data *sdata, const u8 *target_addr, *orig_addr; const u8 *da; u8 target_flags, ttl, flags; - u32 orig_sn, target_sn, lifetime, target_metric; + u32 orig_sn, target_sn, lifetime, target_metric = 0; bool reply = false; bool forward = true; bool root_is_gate; |