[sword-devel] BUG: libSword hangs again

Troy A. Griffitts sword-devel@crosswire.org
Wed, 31 Jul 2002 13:21:52 -0700


ok, this should be fixed.

porton@narod.ru wrote:
> Now libSword hangs on the following test:
> 
> #include <iostream>
> #include <rawld.h>
> 
> void main(int argc, char **argv)
> {
> 	RawLD::createModule("tmp/lextest");
> 	RawLD lex("tmp/lextest");
> 
> 	lex.SetKey("a");
> 	lex << "x";
> 
> 	lex.SetKey("a");
> 	lex.deleteEntry();
> 	
> 	lex.SetKey("a");
> 	lex << "y";
> 
> 	lex = BOTTOM;
> }
>