aboutsummaryrefslogtreecommitdiffstats
path: root/main/translate.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/translate.c')
-rw-r--r--main/translate.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/main/translate.c b/main/translate.c
index e01ce9321..cc898a5db 100644
--- a/main/translate.c
+++ b/main/translate.c
@@ -232,7 +232,10 @@ struct ast_frame *ast_trans_frameout(struct ast_trans_pvt *pvt,
f->offset = AST_FRIENDLY_OFFSET;
f->src = pvt->t->name;
f->data = pvt->outbuf;
- return f;
+ /* We must clone the frame, because the pvt could disappear
+ * the moment after we return (and unlock the source channel).
+ */
+ return ast_frisolate(f);
}
static struct ast_frame *default_frameout(struct ast_trans_pvt *pvt)