Re: [PATCH] src: netlink_delinearize: Fix datatype for len

2016-02-29 Thread Shivani Bhardwaj
On Mon, Feb 29, 2016 at 3:36 PM, Florian Westphal wrote: > Shivani Bhardwaj wrote: >> Change the data type of len from unsigned int to int in order to make >> it valid for checks like >> >> if (len < 0) >> >> The issue was brought into attention by the unexplained behavior of >> frag with frag-of

Re: [PATCH] src: netlink_delinearize: Fix datatype for len

2016-02-29 Thread Florian Westphal
Shivani Bhardwaj wrote: > Change the data type of len from unsigned int to int in order to make > it valid for checks like > > if (len < 0) > > The issue was brought into attention by the unexplained behavior of > frag with frag-off. Bugzilla entry: > https://bugzilla.netfilter.org/show_bug.cgi?

[PATCH] src: netlink_delinearize: Fix datatype for len

2016-02-28 Thread Shivani Bhardwaj
Change the data type of len from unsigned int to int in order to make it valid for checks like if (len < 0) The issue was brought into attention by the unexplained behavior of frag with frag-off. Bugzilla entry: https://bugzilla.netfilter.org/show_bug.cgi?id=935 This patch fixes this bug, howeve