SVN commit 944682 by osterfeld: assert current_kids is > 0 before decrementing (it's unsigned) M +1 -0 main.cpp --- trunk/icecream/daemon/main.cpp #944681:944682 @@ -777,6 +777,7 @@ string current = client->outfile; client->outfile.clear(); client->child_pid = -1; + assert( current_kids > 0 ); current_kids--; log_error() << "installed_size: " << installed_size << endl;