aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-15 15:09:46 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-15 15:09:46 +0000
commita5a8f37d9a22229922ae02791ae6f72b7182db1b (patch)
tree9a2f0afb0b0669cc9c195e210fdc0f897da3d05b
parent9a40998bb3b298dd13dfdc714cace41605811c92 (diff)
Merged revisions 138027 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r138027 | russell | 2008-08-15 10:07:16 -0500 (Fri, 15 Aug 2008) | 9 lines 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) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@138028 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--main/autoservice.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/main/autoservice.c b/main/autoservice.c
index 1f18dee25..d3d0333d1 100644
--- a/main/autoservice.c
+++ b/main/autoservice.c
@@ -152,14 +152,7 @@ static void *autoservice_run(void *ign)
}
}
- 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;
@@ -167,12 +160,15 @@ static void *autoservice_run(void *ign)
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);
}
}