Merge "res_pjsip_registrar: Fix uninitlized variable warning" into 16

This commit is contained in:
Friendly Automation 2019-11-20 08:06:52 -06:00 committed by Gerrit Code Review
commit a78bc75714
1 changed files with 1 additions and 1 deletions

View File

@ -1006,7 +1006,7 @@ static struct ast_sip_aor *find_registrar_aor(struct pjsip_rx_data *rdata, struc
{
struct ast_sip_aor *aor = NULL;
char *aor_name = NULL;
char *domain_name;
char *domain_name = NULL;
char *username = NULL;
int i;