summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorJenkins2 <jenkins2@gerrit.asterisk.org>2017-11-07 20:39:31 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-11-07 20:39:31 -0600
commit0129e396b2523de4349bdab95bdb69a77605adc9 (patch)
treefac6704a180d3d68dd1c428d8d6022fa7ef931cb /res
parentca5bffb305542e6e2693cd86bcf36d57fe698926 (diff)
parent7ef38d399a80f90b804cdbdc12224ee0f02e6a9c (diff)
Merge "res_pjsip_outbound_registration: Fix leak on vector add failure."
Diffstat (limited to 'res')
-rw-r--r--res/res_pjsip_outbound_registration.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/res/res_pjsip_outbound_registration.c b/res/res_pjsip_outbound_registration.c
index 7fa6e2c10..d9afcd284 100644
--- a/res/res_pjsip_outbound_registration.c
+++ b/res/res_pjsip_outbound_registration.c
@@ -1385,10 +1385,10 @@ static int sip_outbound_registration_perform(void *data)
AST_VECTOR_INIT(&state->client_state->outbound_auths, AST_VECTOR_SIZE(&registration->outbound_auths));
for (i = 0; i < AST_VECTOR_SIZE(&registration->outbound_auths); ++i) {
- const char *name = ast_strdup(AST_VECTOR_GET(&registration->outbound_auths, i));
+ char *name = ast_strdup(AST_VECTOR_GET(&registration->outbound_auths, i));
- if (name) {
- AST_VECTOR_APPEND(&state->client_state->outbound_auths, name);
+ if (name && AST_VECTOR_APPEND(&state->client_state->outbound_auths, name)) {
+ ast_free(name);
}
}
state->client_state->retry_interval = registration->retry_interval;