netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Daniel Drake <dsd@gentoo.org>
To: Laurent Riffard <laurent.riffard@free.fr>
Cc: linville@tuxdriver.com, netdev@vger.kernel.org,
	johannes@sipsolutions.net
Subject: Re: [PATCH] sotftmac: fix a slab corruption in WEP restricted key association
Date: Wed, 11 Oct 2006 20:34:11 -0400	[thread overview]
Message-ID: <452D8D83.60908@gentoo.org> (raw)
In-Reply-To: <452D6D80.3020005@free.fr>

Laurent Riffard wrote:
> Fix a slab corruption in ieee80211softmac_auth(). The size of a buffer
> was miscomputed.
> 
> see http://bugzilla.kernel.org/show_bug.cgi?id=7245
> 
> Acked-by: Daniel Drake <dsd@gentoo.org>"
> Signed-off-by: Laurent Riffard <laurent.riffard@free.fr>

Apparently the CC list didn't work out. Adding Johannes and netdev.

> net/ieee80211/softmac/ieee80211softmac_io.c |    2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Index: linux-2.6-mm/net/ieee80211/softmac/ieee80211softmac_io.c
> ===================================================================
> --- linux-2.6-mm.orig/net/ieee80211/softmac/ieee80211softmac_io.c
> +++ linux-2.6-mm/net/ieee80211/softmac/ieee80211softmac_io.c
> @@ -304,7 +304,7 @@ ieee80211softmac_auth(struct ieee80211_a
>         2 +        /* Auth Transaction Seq */
>         2 +        /* Status Code */
>          /* Challenge Text IE */
> -        is_shared_response ? 0 : 1 + 1 + net->challenge_len
> +        (is_shared_response ? 1 + 1 + net->challenge_len : 0)
>     );
>     if (unlikely((*pkt) == NULL))
>         return 0;
> 


       reply	other threads:[~2006-10-12  0:34 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <452D6D80.3020005@free.fr>
2006-10-12  0:34 ` Daniel Drake [this message]
2006-10-13  9:04   ` [PATCH] sotftmac: fix a slab corruption in WEP restricted key association Johannes Berg
2006-10-13 12:08     ` Daniel Drake
2006-10-13 12:12       ` Johannes Berg

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=452D8D83.60908@gentoo.org \
    --to=dsd@gentoo.org \
    --cc=johannes@sipsolutions.net \
    --cc=laurent.riffard@free.fr \
    --cc=linville@tuxdriver.com \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).