FC Updates from BitShares and myself #21

Closed
nathanielhourt wants to merge 687 commits from dapp-support into latest-fc
Showing only changes of commit 491fd31734 - Show all commits

View file

@ -532,8 +532,8 @@ namespace fc {
next->_set_active_context( current ); next->_set_active_context( current );
current->cur_task = next; current->cur_task = next;
next->run(); next->run();
current->cur_task = 0; current->cur_task = nullptr;
next->_set_active_context(0); next->_set_active_context(nullptr);
next->release(); // HERE BE DRAGONS next->release(); // HERE BE DRAGONS
current->reinitialize(); current->reinitialize();
} }