summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/res_pjsip/pjsip_distributor.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/res/res_pjsip/pjsip_distributor.c b/res/res_pjsip/pjsip_distributor.c
index e59305ec5..5cc645cc3 100644
--- a/res/res_pjsip/pjsip_distributor.c
+++ b/res/res_pjsip/pjsip_distributor.c
@@ -228,6 +228,11 @@ static int create_artificial_endpoint(void)
}
AST_VECTOR_INIT(&artificial_endpoint->inbound_auths, 1);
+ /* Pushing a bogus value into the vector will ensure that
+ * the proper size of the vector is returned. This value is
+ * not actually used anywhere
+ */
+ AST_VECTOR_APPEND(&artificial_endpoint->inbound_auths, "artificial-auth");
return 0;
}