From 1467d34d733fcbecb7cbc7289c3415cb14bf6603 Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Wed, 24 Apr 2019 20:31:00 +0300 Subject: [PATCH] Removed unused field from nxt_conf_op_s. --- src/nxt_conf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/nxt_conf.c b/src/nxt_conf.c index 4c6d8839..08b0a029 100644 --- a/src/nxt_conf.c +++ b/src/nxt_conf.c @@ -87,7 +87,6 @@ struct nxt_conf_op_s { uint32_t index; uint32_t action; /* nxt_conf_op_action_t */ void *ctx; - nxt_conf_op_t *next; }; @@ -1015,7 +1014,7 @@ nxt_conf_copy_object(nxt_mp_t *mp, nxt_conf_op_t *op, nxt_conf_value_t *dst, break; } - op = op->next; + op = NULL; } } while (d != count);