CCO: make sure ISM list is initialized as empty list []

This commit is contained in:
Harald Welte 2011-12-17 18:55:27 +01:00
parent f6f4f6d5cc
commit 04c548c2d8
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ init([Supervisor, USAP, DialogueID]) ->
process_flag(trap_exit, true),
DHA = list_to_atom("tcap_dha_" ++ integer_to_list(DialogueID)),
{ok, #state{supervisor = Supervisor, usap = USAP, dha = DHA,
dialogueID = DialogueID, components = []}}.
dialogueID = DialogueID, components = [], ism = []}}.
%% set the DHA pid
handle_call(set_dha, From, State) ->