aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2011-01-28 18:34:05 +0100
committerSven Eckelmann <sven@narfation.org>2011-01-30 10:32:02 +0100
commit2674c15870f888cb732a564fc504ce17654afc64 (patch)
tree98ae97713077307ee1f56ec5de362b53f8e3186d /net
parentbatman-adv: Fix kernel panic when fetching vis data on a vis server (diff)
downloadlinux-dev-2674c15870f888cb732a564fc504ce17654afc64.tar.xz
linux-dev-2674c15870f888cb732a564fc504ce17654afc64.zip
batman-adv: Remove vis info on hashing errors
A newly created vis info object must be removed when it couldn't be added to the hash. The old_info which has to be replaced was already removed and isn't related to the hash anymore. Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net')
-rw-r--r--net/batman-adv/vis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/vis.c b/net/batman-adv/vis.c
index f69a3748f8ae..0be55beba054 100644
--- a/net/batman-adv/vis.c
+++ b/net/batman-adv/vis.c
@@ -444,7 +444,7 @@ static struct vis_info *add_packet(struct bat_priv *bat_priv,
info);
if (hash_added < 0) {
/* did not work (for some reason) */
- kref_put(&old_info->refcount, free_info);
+ kref_put(&info->refcount, free_info);
info = NULL;
}