Merge pull request #457 from dragos-oancea/mod_skinny-garbage-val

[mod_skinny] scan-build: Assigned value is garbage or undefined
This commit is contained in:
Andrey Volk 2020-02-28 00:33:02 +04:00 committed by GitHub
commit 3fe3d11100
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1928,7 +1928,7 @@ switch_status_t skinny_handle_capabilities_response(listener_t *listener, skinny
uint32_t i = 0;
uint32_t n = 0;
char *codec_order[SWITCH_MAX_CODECS];
char *codec_order[SWITCH_MAX_CODECS] = {0};
char *codec_string;
size_t string_len, string_pos, pos;
@ -2556,7 +2556,7 @@ switch_status_t skinny_handle_updatecapabilities(listener_t *listener, skinny_me
uint32_t i = 0;
uint32_t n = 0;
char *codec_order[SKINNY_MAX_CAPABILITIES];
char *codec_order[SKINNY_MAX_CAPABILITIES] = {0};
char *codec_string;
size_t string_len, string_pos, pos;