From: "David S. Miller" <[EMAIL PROTECTED]>
Date: Wed, 21 Dec 2005 21:56:05 -0800 (PST)

> +                     while (tail)
> +                             tail = tail->next;

Of course this is buggy, it should be:

        while (tail->next)
                tail = tail->next;

So if you test please make that correction.
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to