Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
tls: check error fix
  • Loading branch information
indutny committed Apr 30, 2015
commit 2c5df36e61e1696fecb94f24882edd699c5b4617
2 changes: 1 addition & 1 deletion src/tls_wrap.cc
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ bool TLSWrap::InvokeQueued(int status) {
err = uv_check_start(&check->check_, CheckWriteItem::CheckCb);

// No luck today, do it on next InvokeQueued
if (err) {
if (err != 0) {
delete check;
pending_write_items_.PushBack(wi);
continue;
Expand Down