I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2008-03-26 18:31:03-07 by dpramanik
Uncompress returns -3
I'm able to successfully read the file list in zip files but when trying to uncompress the file it returns -3. unsigned long actualLen = uncompressedSize; BYTE *pActualData = NULL; pActualData = (BYTE*)malloc(uncompressedSize); int i = uncompress(pActualData,&actualLen,FileData,compressedSize); it return -3. Interally the error is returned from inflate method.
Direct Responses: 7472 | Write a response
Posted on 2008-03-26 20:40:25-07 by pmarquess in response to 7470
Re: Uncompress returns -3
I don't see what this has to do with Compress::Zlib. Can you post more details please?

Paul
Direct Responses: Write a response