We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1602ee0 commit 4391214Copy full SHA for 4391214
src/flb_filter.c
@@ -86,7 +86,6 @@ void flb_filter_do(struct flb_input_chunk *ic,
86
memcpy(ntag, tag, tag_len);
87
ntag[tag_len] = '\0';
88
89
-
90
work_data = (const char *) data;
91
work_size = bytes;
92
@@ -118,7 +117,7 @@ void flb_filter_do(struct flb_input_chunk *ic,
118
117
/* Invoke the filter callback */
119
ret = f_ins->p->cb_filter(work_data, /* msgpack buffer */
120
work_size, /* msgpack size */
121
- tag, tag_len, /* input tag */
+ ntag, tag_len, /* input tag */
122
&out_buf, /* new data */
123
&out_size, /* new data size */
124
f_ins, /* filter instance */
0 commit comments