Skip to content

Commit 316959e

Browse files
committed
http_common: fix return value for zstd uncompress
Signed-off-by: Eduardo Silva <[email protected]>
1 parent c555f73 commit 316959e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/flb_http_common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1522,7 +1522,7 @@ int uncompress_zstd(char **output_buffer,
15221522
return -1;
15231523
}
15241524

1525-
return 0;
1525+
return 1;
15261526
}
15271527

15281528
static \

0 commit comments

Comments
 (0)