forked from Mirrors/freeswitch
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:
commit
3fe3d11100
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user