浏览代码

Fixed dialyzer warning which showed a bug!

pull/62/head
Chandrashekhar Mullaparthi 13 年前
父节点
当前提交
0f4f99b0be
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/ibrowse_http_client.erl

+ 1
- 1
src/ibrowse_http_client.erl 查看文件

@ -1789,7 +1789,7 @@ shutting_down(#state{lb_ets_tid = undefined}) ->
ok; ok;
shutting_down(#state{lb_ets_tid = Tid, shutting_down(#state{lb_ets_tid = Tid,
cur_pipeline_size = _Sz}) -> cur_pipeline_size = _Sz}) ->
catch ets:match_delete(Tid, self()).
catch ets:delete(Tid, self()).
inc_pipeline_counter(#state{is_closing = true} = State) -> inc_pipeline_counter(#state{is_closing = true} = State) ->
State; State;

正在加载...
取消
保存