summaryrefslogtreecommitdiff
path: root/main/translate.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/translate.c')
-rw-r--r--main/translate.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/main/translate.c b/main/translate.c
index ce430ce97..ac9112e81 100644
--- a/main/translate.c
+++ b/main/translate.c
@@ -283,6 +283,12 @@ static void *newpvt(struct ast_translator *t, const struct ast_format *explicit_
int len;
char *ofs;
+ /* If we don't have a local init routine, don't bother building the
+ ast_trans_pvt */
+ if (!t->newpvt) {
+ return NULL;
+ }
+
/*
* compute the required size adding private descriptor,
* buffer, AST_FRIENDLY_OFFSET.
@@ -309,7 +315,7 @@ static void *newpvt(struct ast_translator *t, const struct ast_format *explicit_
ast_format_copy(&pvt->explicit_dst, explicit_dst);
}
/* call local init routine, if present */
- if (t->newpvt && t->newpvt(pvt)) {
+ if (t->newpvt(pvt)) {
ast_free(pvt);
return NULL;
}