[mod_xml_scgi] Fix dead initialization in mod_xml_scgi_shutdown()

This commit is contained in:
Andrey Volk 2022-01-12 14:34:22 +03:00
parent 1f9305098d
commit 884917cb11
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_xml_scgi_shutdown)
if (bp->thread) { if (bp->thread) {
switch_status_t st; switch_status_t st;
scgi_handle_t handle = { 0 }; scgi_handle_t handle = { 0 };
unsigned char buf[16336] = ""; unsigned char buf[16336];
int x = 3; int x = 3;
scgi_add_param(&handle, "REQUEST_METHOD", "POST"); scgi_add_param(&handle, "REQUEST_METHOD", "POST");