Takahiro Yamashita

Results 46 issues of Takahiro Yamashita

https://github.com/fluent/fluent-bit/issues/5715#issuecomment-1184409540 Valgrind reports using uninitialized `ctx->parser_name`. I modified to fill NULL using `flb_calloc`. ---- Enter `[N/A]` in the box, if an item is not applicable to your change. **Testing** Before...

docs-required

Current `flb-it-aws_util` may fail on some environment since it uses `mktime` and it depends on timezone. TZ=Australia/Sydney ``` $ TZ=Australia/Sydney bin/flb-it-aws_util Test parse_api_error... [ OK ] Test flb_aws_endpoint... [ OK...

docs-required

This patch is to fix below warnings. Currently a type of `extra_user_agent` is a `flb_sds_t *`. I think it should be `flb_sds_t`. - `flb_sds_destroy` needs a `flb_sds_t`. - `flb_sds_create` returns...

docs-required

&config and &config->ch_event points same address since ch_event is a first member of struct. We can pass &config instead of &config->ch_event. However it is a risk of bug. - If...

docs-required

In some cases, fluent-bit calls fprintf to log error. I think it should use flb_error or something. ---- Enter `[N/A]` in the box, if an item is not applicable to...

docs-required

This patch is to - Add test code for in_http - Close server_fd on exit handler that the test code detects ---- Enter `[N/A]` in the box, if an item...

docs-required

Fixes #5810 This patch is to allow multiple json payloads per one http post. input : ``` curl -d $'{"1":1}{"2":2}' -H "content-type: application/json" http://127.0.0.1:8888 ``` output : ``` [0] http.0:...

docs-required

Fluent-bit project uses monkey as a library. This patch is to add `mk_list_add_before` to fix a bug of fluent-bit. https://github.com/fluent/fluent-bit/pull/5590 I found that there is no way to add entry...

I tested monkey API and [this commit](https://github.com/monkey/monkey/pull/357/commits/b4007ddaf61cddc4235cf95f49ae4fec8380ba3c) may cause invalid read. I tested [current master](https://github.com/monkey/monkey/tree/4ddc8b0865ba403422519fa5412b8258946824be) and its `api_test`. ## Testing ``` git clone https://github.com/monkey/monkey.git cd monkey git checkout 4ddc8b0865ba403422519fa5412b8258946824be mkdir...

Built error is occurred. My environment is FreeBSD 10.2 , clang 3.4.1 I used 62f1aa2f01c0e5b668bd3a1b58ab1db4a1460be7 Note: I can build,when WITH_BACKTRACE is No . ## Build log ``` make [ 65%]...