[asterisk-commits] russell: branch 1.4 r138027 - /branches/1.4/main/autoservice.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Aug 15 10:07:17 CDT 2008
Author: russell
Date: Fri Aug 15 10:07:16 2008
New Revision: 138027
URL: http://svn.digium.com/view/asterisk?view=rev&rev=138027
Log:
Ensure that when a hangup occurs in autoservice, that a hangup frame gets
properly deferred to be read from the channel owner when it gets taken out
of autoservice.
(closes issue #12874)
Reported by: dimas
Patches:
v1-12874.patch uploaded by dimas (license 88)
Modified:
branches/1.4/main/autoservice.c
Modified: branches/1.4/main/autoservice.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/autoservice.c?view=diff&rev=138027&r1=138026&r2=138027
==============================================================================
--- branches/1.4/main/autoservice.c (original)
+++ branches/1.4/main/autoservice.c Fri Aug 15 10:07:16 2008
@@ -157,14 +157,7 @@
}
}
- if (!defer_frame) {
- if (f) {
- ast_frfree(f);
- }
- continue;
- }
-
- if (f) {
+ if (defer_frame) {
for (i = 0; i < x; i++) {
struct ast_frame *dup_f;
@@ -172,12 +165,15 @@
continue;
}
- if ((dup_f = ast_frdup(f))) {
+ if ((dup_f = ast_frdup(defer_frame))) {
AST_LIST_INSERT_TAIL(&ents[i]->deferred_frames, dup_f, frame_list);
}
break;
}
+ }
+
+ if (f) {
ast_frfree(f);
}
}
More information about the asterisk-commits
mailing list