aijin has asked for the wisdom of the Perl Monks concerning the following question:
I don't know why the files are being compressed with lzop, but it's not code that I'm able to change, so I'm stuck with trying to figure out how to change things at my end.
I'm currently decompressing thusly:
Unfortunately, all I'm getting is a undefined value returned, indicating an error.my $decompedstring = Compress::LZO::decompress($compedstring); if (! defined $decompedstring) { print "Error decompressing string!"; } else { print $decompedstring; }
Thoughts?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: lzop vs. Compress::LZO
by rpc (Monk) on May 23, 2001 at 22:07 UTC | |
|
Re: lzop vs. Compress::LZO
by DrSax (Sexton) on May 23, 2001 at 21:13 UTC | |
|
Re: lzop vs. Compress::LZO
by fs (Monk) on May 23, 2001 at 22:30 UTC | |
by aijin (Monk) on May 23, 2001 at 22:45 UTC |