* Ugh, nasty Heisenbug due to an uninitialiased variable. The bug

only caused a crash if the program was *not* invoked with a high
  verbosity level.
This commit is contained in:
Eelco Dolstra 2004-06-21 08:51:55 +00:00
parent be1a917beb
commit 72c857f0eb
1 changed files with 1 additions and 0 deletions

View File

@ -1441,6 +1441,7 @@ Worker::Worker()
/* Debugging: prevent recursive workers. */
if (working) abort();
working = true;
nrChildren = 0;
}