Re: [ovs-dev] [PATCH v2] odp-utils: Fix memory corruption while flow parsing.

2013-03-24 Thread Gurucharan Shetty
On Sun, Mar 24, 2013 at 6:04 PM, Ben Pfaff wrote: > Looks good, thank you. Thanks. I pushed this to master and 1.10. > > On Mar 24, 2013 5:22 PM, "Gurucharan Shetty" wrote: >> >> Currently, when flow attribute type is greater than OVS_KEY_ATTR_MAX, >> we can write into a random memory address cau

Re: [ovs-dev] [PATCH v2] odp-utils: Fix memory corruption while flow parsing.

2013-03-24 Thread Ben Pfaff
Looks good, thank you. On Mar 24, 2013 5:22 PM, "Gurucharan Shetty" wrote: > Currently, when flow attribute type is greater than OVS_KEY_ATTR_MAX, > we can write into a random memory address causing corruption. Fix it. > > Bug #15702. > Signed-off-by: Gurucharan Shetty > --- > lib/odp-util.c |

[ovs-dev] [PATCH v2] odp-utils: Fix memory corruption while flow parsing.

2013-03-24 Thread Gurucharan Shetty
Currently, when flow attribute type is greater than OVS_KEY_ATTR_MAX, we can write into a random memory address causing corruption. Fix it. Bug #15702. Signed-off-by: Gurucharan Shetty --- lib/odp-util.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/odp-util.c b/li