Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

out_forward: release buf when no connection available and time_as_integer is true(#6082) #6210

Merged
merged 1 commit into from
Oct 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions plugins/out_forward/forward.c
Original file line number Diff line number Diff line change
Expand Up @@ -1254,7 +1254,6 @@ static void cb_forward_flush(struct flb_event_chunk *event_chunk,
int mode;
msgpack_packer mp_pck;
msgpack_sbuffer mp_sbuf;
void *tmp_buf = NULL;
void *out_buf = NULL;
size_t out_size = 0;
struct flb_forward *ctx = out_context;
Expand Down Expand Up @@ -1309,7 +1308,7 @@ static void cb_forward_flush(struct flb_event_chunk *event_chunk,
flb_plg_error(ctx->ins, "no upstream connections available");
msgpack_sbuffer_destroy(&mp_sbuf);
if (fc->time_as_integer == FLB_TRUE) {
flb_free(tmp_buf);
flb_free(out_buf);
}
flb_free(flush_ctx);
FLB_OUTPUT_RETURN(FLB_RETRY);
Expand All @@ -1328,7 +1327,7 @@ static void cb_forward_flush(struct flb_event_chunk *event_chunk,
}
msgpack_sbuffer_destroy(&mp_sbuf);
if (fc->time_as_integer == FLB_TRUE) {
flb_free(tmp_buf);
flb_free(out_buf);
}
flb_free(flush_ctx);
FLB_OUTPUT_RETURN(FLB_RETRY);
Expand Down