src: fix experiment

This commit is contained in:
Fedor Indutny 2016-06-03 13:06:48 -04:00
parent 106064e396
commit fe32ad3b58
1 changed files with 0 additions and 8 deletions

View File

@ -114,14 +114,6 @@ void uv_link_propagate_close(uv_link_t* link, uv_link_t* source,
CHECK_EQ(link->child, NULL, "uv_link_t: attempt to close chained link");
/* We are in an API call, wait for it to end before destroying everything */
if (link->close_depth != 0) {
CHECK_EQ(link, source, "pending close_cb for non-leaf link");
link->saved_close_cb = cb;
return;
}
/* Find root */
count = 1;
for (root = link; root->parent != NULL; root = root->parent)