mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-04 17:51:03 +00:00
FS-10853: Fix unitialzed var
This commit is contained in:
parent
737d1b4ec8
commit
615c8da7fe
@ -1336,7 +1336,7 @@ static switch_crypto_key_material_t* switch_core_media_crypto_append_key_materia
|
|||||||
*/
|
*/
|
||||||
static const char* switch_core_media_crypto_find_key_material_candidate_end(const char *p)
|
static const char* switch_core_media_crypto_find_key_material_candidate_end(const char *p)
|
||||||
{
|
{
|
||||||
const char *end;
|
const char *end = NULL;
|
||||||
|
|
||||||
switch_assert(p != NULL);
|
switch_assert(p != NULL);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user