Fahnenfluchtige

Results 7 issues of Fahnenfluchtige

Hello! I'm trying to run a ClusterFuzz bot in a local instance but encountering an error. I made a few changes to the files to adapt the setup to my...

The Svace static analysis tool identified a potential issue in the function `ngx_rtmp_relay_on_status`(), where the return value of `ngx_rtmp_receive_amf()` is not checked (line 1292): ```c ngx_rtmp_receive_amf(s, in, in_elts_meta, sizeof(in_elts_meta) /...

The Svace static analysis tool identified a potential issue in the function `ngx_rtmp_live_join()`, where the return value of `ngx_palloc() `is used without NULL-checking (506-510): ```c if (ctx == NULL) {...

The Svace static analysis tool identified a potential issue in the function `ngx_stream_lua_req_socket()`, where the return value of `ngx_stream_lua_get_req` is not checked (line 1936): ```c r = ngx_stream_lua_get_req(L); ``` The...

The Svace static analysis tool identified a potential issue in the function `ngx_rtmp_live_av`, where the return value of `ngx_rtmp_append_shared_bufs` and `ngx_rtmp_alloc_shared_bufs` is not checked properly. After allocation or appending the...

The Svace static analysis tool identified a potential issue in the function `ngx_rtmp_relay_postconfiguration`, where the return value of `ngx_array_push` is not checked properly: ```c ch = ngx_array_push(&cmcf->amf); ``` The function...

The Svace static analysis tool identified a potential issue in the function `ngx_rtmp_init_event_handlers()`, where the return value of `ngx_array_init` is not checked properly: ```c ngx_array_init(&cmcf->amf_arrays, cf->pool, 1, sizeof(ngx_hash_key_t)); ``` The...