mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
revert commit that included extranous changes
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@182807 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -168,22 +168,15 @@ static void *autoservice_run(void *ign)
|
||||
continue;
|
||||
}
|
||||
|
||||
if (defer_frame != f) {
|
||||
if ((dup_f = ast_frdup(defer_frame))) {
|
||||
AST_LIST_INSERT_HEAD(&ents[i]->deferred_frames, dup_f, frame_list);
|
||||
}
|
||||
} else {
|
||||
if ((dup_f = ast_frisolate(defer_frame))) {
|
||||
if (dup_f != defer_frame) {
|
||||
ast_frfree(defer_frame);
|
||||
}
|
||||
AST_LIST_INSERT_HEAD(&ents[i]->deferred_frames, dup_f, frame_list);
|
||||
}
|
||||
if ((dup_f = ast_frdup(defer_frame))) {
|
||||
AST_LIST_INSERT_HEAD(&ents[i]->deferred_frames, dup_f, frame_list);
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
} else if (f) {
|
||||
}
|
||||
|
||||
if (f) {
|
||||
ast_frfree(f);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user