Pablo Neira Ayuso <[email protected]> wrote:
> If fine with that, I would prefer to take your patch v1 to fix the
> endless loop problem (ie. this patch).

> diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
> index e3ddd8e95e58..04d504a31e60 100644
> --- a/net/netfilter/nf_tables_api.c
> +++ b/net/netfilter/nf_tables_api.c
> @@ -2350,7 +2350,7 @@ static int nf_tables_dump_rules(struct sk_buff *skb,
>               if (ctx && ctx->table && strcmp(ctx->table, table->name) != 0)
>                       continue;
>  
> -             if (ctx && ctx->chain) {
> +             if (ctx && ctx->table && ctx->chain) {

LGTM.

Reply via email to