mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
Fix mbl_fixup() in chan_mobile to update newchan->tech_pvt instead of oldchan.
(closes issue #15299) Reported by: nikkk git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@205700 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1100,10 +1100,10 @@ static int mbl_write(struct ast_channel *ast, struct ast_frame *frame)
|
||||
static int mbl_fixup(struct ast_channel *oldchan, struct ast_channel *newchan)
|
||||
{
|
||||
|
||||
struct mbl_pvt *pvt = oldchan->tech_pvt;
|
||||
struct mbl_pvt *pvt = newchan->tech_pvt;
|
||||
|
||||
if (!pvt) {
|
||||
ast_debug(1, "fixup failed, no pvt on oldchan\n");
|
||||
ast_debug(1, "fixup failed, no pvt on newchan\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user