Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fluent/fluent-bit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e02c52cb66d643b6132b890df5ac48ab9598df34
Choose a base ref
..
head repository: fluent/fluent-bit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b4c023e756eaea26163c722054e302048471f7ef
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 src/flb_unescape.c
4 changes: 2 additions & 2 deletions src/flb_unescape.c
Original file line number Diff line number Diff line change
@@ -224,8 +224,8 @@ int flb_unescape_string_utf8(const char *in_buf, int sz, char *out_buf)
if (size > 0) {
esc_in = u8_read_escape_sequence(next, size, &ch) + 1;
if (esc_in == -1) {
/* skip invalid sequence */
continue;
flb_error("invalid sequence detected");
break;
}
}
else {