Re: [dpdk-dev] [PATCH] examples/l2fwd-crypto: fix uninitialized errno value

2017-09-05 Thread De Lara Guarch, Pablo
> -Original Message- > From: Hemant Agrawal [mailto:hemant.agra...@nxp.com] > Sent: Wednesday, August 23, 2017 1:24 PM > To: dev@dpdk.org > Cc: Doherty, Declan ; De Lara Guarch, Pablo > ; akhil.go...@nxp.com > Subject: [PATCH] examples/l2fwd-crypto: fix uninitialized errno value > > errn

Re: [dpdk-dev] [PATCH] examples/l2fwd-crypto: fix uninitialized errno value

2017-09-04 Thread Rybalchenko, Kirill
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Hemant Agrawal > Sent: Wednesday 23 August 2017 13:24 > To: dev@dpdk.org > Cc: Doherty, Declan ; De Lara Guarch, Pablo > ; akhil.go...@nxp.com > Subject: [dpdk-dev] [PATCH] examp

Re: [dpdk-dev] [PATCH] examples/l2fwd-crypto: fix uninitialized errno value

2017-09-04 Thread De Lara Guarch, Pablo
> -Original Message- > From: Hemant Agrawal [mailto:hemant.agra...@nxp.com] > Sent: Wednesday, August 23, 2017 1:24 PM > To: dev@dpdk.org > Cc: Doherty, Declan ; De Lara Guarch, Pablo > ; akhil.go...@nxp.com > Subject: [PATCH] examples/l2fwd-crypto: fix uninitialized errno value > > errn

[dpdk-dev] [PATCH] examples/l2fwd-crypto: fix uninitialized errno value

2017-08-23 Thread Hemant Agrawal
errno should be initialized to 0 before calling strtol Fixes: 1df9c0109f4c ("examples/l2fwd-crypto: parse key parameters") Cc: sta...@dpdk.org Signed-off-by: Hemant Agrawal --- examples/l2fwd-crypto/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/l2fwd-crypto/main.c b/exampl