Skip to content

Commit

Permalink
Fix one readnotify I missed
Browse files Browse the repository at this point in the history
  • Loading branch information
Keno committed Jul 12, 2013
1 parent 500d615 commit 434f5c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/stream.jl
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ function _uv_hook_close(uv::Union(AsyncStream,UVServer))
uv.closecb(uv)
end
notify(uv.closenotify)
try notify(uv.readnotify) end
try notify(uv.readnotify,uv_noerror()) end
try notify(uv.connectnotify) end
end
_uv_hook_close(uv::AsyncWork) = (uv.handle = C_NULL; nothing)
Expand Down

0 comments on commit 434f5c0

Please sign in to comment.