25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-22 16:20:52 +01:00

Attempt to fix dialyzer warning: adhoc.erl:51: Guard test XData::'false' | #xmlel{ns::'jabberdata',declared_ns::[{_,_}],attrs::[{_,_,_,_}],children::'undefined' | [{_,_} | {_,_,_,_,_,_}]} =:= 'true' can never succeed

SVN Revision: 2869
This commit is contained in:
Mickaël Rémond 2010-01-09 16:18:59 +00:00
parent 24aefc429c
commit c8fd680d92

View File

@ -44,10 +44,11 @@ parse_request(#iq{type = set, lang = Lang, sub_el = SubEl, xmlns = ?NS_COMMANDS}
Action = xml:get_tag_attr_s("action", SubEl), Action = xml:get_tag_attr_s("action", SubEl),
XData = find_xdata_el(SubEl), XData = find_xdata_el(SubEl),
{xmlelement, _, _, AllEls} = SubEl, {xmlelement, _, _, AllEls} = SubEl,
if XData -> case XData of
Others = lists:delete(XData, AllEls); false ->
true -> Others = AllEls;
Others = AllEls _ ->
Others = lists:delete(XData, AllEls)
end, end,
#adhoc_request{lang = Lang, #adhoc_request{lang = Lang,