October 06, 2005
import std.zlib;
void main(){
	try{
		uncompress(x"42");
		assert(0);
	}catch(ZlibException e){
	}
}


//instead of throwing a ZlibException, std.zlib.uncompress runs forever.
October 15, 2005
"zwang" <nehzgnaw@gmail.com> wrote in message news:di3bqr$p2u$1@digitaldaemon.com...
> import std.zlib;
> void main(){
> try{
> uncompress(x"42");
> assert(0);
> }catch(ZlibException e){
> }
> }
>
>
> //instead of throwing a ZlibException, std.zlib.uncompress runs forever.

This appears to be a problem with inflate() in the C zlib library from
info-zip.com.