Skip to content

Commit d6dc1e9

Browse files
pwhelanedsiper
authored andcommitted
config: fix property values being truncated.
Signed-off-by: Phillip Whelan <phil@calyptia.com>
1 parent 58d44a4 commit d6dc1e9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/config_format/flb_config_format.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ struct cfl_variant *flb_cf_section_property_add(struct flb_cf *cf,
193193
}
194194

195195
if (v_len == 0) {
196-
v_len = strlen(k_buf);
196+
v_len = strlen(v_buf);
197197
}
198198
val = flb_sds_create_len(v_buf, v_len);
199199
if (val == NULL) {

src/fluent-bit.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -723,14 +723,15 @@ static int service_configure_plugin(struct flb_config *config,
723723
ins = flb_output_new(config, tmp, NULL, FLB_TRUE);
724724
}
725725
flb_sds_destroy(tmp);
726-
flb_sds_destroy(name);
727726

728727
/* validate the instance creation */
729728
if (!ins) {
730729
flb_error("[config] section '%s' tried to instance a plugin name "
731730
"that don't exists", name);
731+
flb_sds_destroy(name);
732732
return -1;
733733
}
734+
flb_sds_destroy(name);
734735

735736
/*
736737
* iterate section properties and populate instance by using specific

0 commit comments

Comments
 (0)