]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Ensure that when a hangup occurs in autoservice, that a hangup frame gets
authorRussell Bryant <russell@russellbryant.com>
Fri, 15 Aug 2008 15:07:16 +0000 (15:07 +0000)
committerRussell Bryant <russell@russellbryant.com>
Fri, 15 Aug 2008 15:07:16 +0000 (15:07 +0000)
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: https://origsvn.digium.com/svn/asterisk/branches/1.4@138027 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/autoservice.c

index a681b0f1d55fad0e1f6d803111a9694abc9ab237..d3879b2c535f2a83ab8ad05f8e117512405171b8 100644 (file)
@@ -157,14 +157,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;
                                
@@ -172,12 +165,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);
                }
        }