Re: [ovs-dev] [PATCH 11/11] ovs-testcontroller: Fix possible null pointer to atoi.

2017-10-30 Thread Mark Michelson
Looks good to me

On Sat, Oct 28, 2017 at 12:38 PM William Tu  wrote:

> Clang reports possible optarg as null passed to atoi.
> Fix it by adding ovs_assert check.
>
> Signed-off-by: William Tu 
>
Acked-by: Mark Michelson 

> ---
>  utilities/ovs-testcontroller.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/utilities/ovs-testcontroller.c
> b/utilities/ovs-testcontroller.c
> index b4a451286455..be28d5494ec0 100644
> --- a/utilities/ovs-testcontroller.c
> +++ b/utilities/ovs-testcontroller.c
> @@ -318,6 +318,7 @@ parse_options(int argc, char *argv[])
>  if (!strcmp(optarg, "permanent")) {
>  max_idle = OFP_FLOW_PERMANENT;
>  } else {
> +ovs_assert(optarg);
>  max_idle = atoi(optarg);
>  if (max_idle < 1 || max_idle > 65535) {
>  ovs_fatal(0, "--max-idle argument must be between 1
> and "
> @@ -327,6 +328,7 @@ parse_options(int argc, char *argv[])
>  break;
>
>  case 'q':
> +ovs_assert(optarg);
>  default_queue = atoi(optarg);
>  break;
>
> --
> 2.7.4
>
> ___
> dev mailing list
> d...@openvswitch.org
> https://mail.openvswitch.org/mailman/listinfo/ovs-dev
>
___
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev


[ovs-dev] [PATCH 11/11] ovs-testcontroller: Fix possible null pointer to atoi.

2017-10-28 Thread William Tu
Clang reports possible optarg as null passed to atoi.
Fix it by adding ovs_assert check.

Signed-off-by: William Tu 
---
 utilities/ovs-testcontroller.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/utilities/ovs-testcontroller.c b/utilities/ovs-testcontroller.c
index b4a451286455..be28d5494ec0 100644
--- a/utilities/ovs-testcontroller.c
+++ b/utilities/ovs-testcontroller.c
@@ -318,6 +318,7 @@ parse_options(int argc, char *argv[])
 if (!strcmp(optarg, "permanent")) {
 max_idle = OFP_FLOW_PERMANENT;
 } else {
+ovs_assert(optarg);
 max_idle = atoi(optarg);
 if (max_idle < 1 || max_idle > 65535) {
 ovs_fatal(0, "--max-idle argument must be between 1 and "
@@ -327,6 +328,7 @@ parse_options(int argc, char *argv[])
 break;
 
 case 'q':
+ovs_assert(optarg);
 default_queue = atoi(optarg);
 break;
 
-- 
2.7.4

___
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev