diff options
author | Valentin Bartenev <vbart@nginx.com> | 2019-04-24 20:31:00 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2019-04-24 20:31:00 +0300 |
commit | 1467d34d733fcbecb7cbc7289c3415cb14bf6603 (patch) | |
tree | 64cb7d9986977fe9c78a75da0fa944d8f21e9684 | |
parent | 094cc2fc997b86a86e5ce65c44509b19e5b89874 (diff) | |
download | unit-1467d34d733fcbecb7cbc7289c3415cb14bf6603.tar.gz unit-1467d34d733fcbecb7cbc7289c3415cb14bf6603.tar.bz2 |
Removed unused field from nxt_conf_op_s.
-rw-r--r-- | src/nxt_conf.c | 3 |
1 files changed, 1 insertions, 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); |