[dpdk-dev] [PATCH] ipc: handle more invalid parameter cases

2019-04-29 Thread Anatoly Burakov
Length of buffer and number of fd's to send are signed values, so they can be negative, but the API doesn't check for that. Fix it by checking for negative values as well. Fixes: bacaa2754017 ("eal: add channel for multi-process communication") Cc: sta...@dpdk.org Signed-off-by: Anatoly Burakov

Re: [dpdk-dev] [PATCH] ipc: handle more invalid parameter cases

2019-05-03 Thread Thomas Monjalon
29/04/2019 15:59, Anatoly Burakov: > Length of buffer and number of fd's to send are signed values, so > they can be negative, but the API doesn't check for that. Fix it > by checking for negative values as well. > > Fixes: bacaa2754017 ("eal: add channel for multi-process communication") > Cc: st