|
From: <And...@wi...> - 2002-08-07 16:51:07
|
Hey.
I was working w/ the 3.2.0b4 7/28 snapshot and hit:
FATAL ERROR:Compressor::get_vals invalid comptype
FATAL ERROR at file:WordBitCompress.cc line:827 !!!
Segmentation Fault - core dumped
not sure where it was from (can't reproduce it) but I went to
htword/WordBitCompress.cc and noticed that, though the run was w/ -vvvvv
the:
if(verbose)printf("get_vals:comptype:%d\n",comptype);
stmts didn't show up in the output. I can only find 2 places where new
Compressors are created, in htword/WordDBPage.cc and neithor of them seems
to pass along the verbose flag. I'm out of my depth here, but the
constructor for Compressors:
Compressor():BitStream()
{
verbose=0;
}
Compressor(int size0):BitStream(size0)
{
verbose=0;
}
seem to be setting always to zero.
a
Andy Bach, Sys. Mangler
Internet: and...@wi...
VOICE: (608) 261-5738 FAX 264-5030
"To understand recursion, we must first understand recursion."
|