[Patches] [Patch #101810] Fix MemoryError when decompressing empty string

noreply@sourceforge.net noreply@sourceforge.net
Fri, 6 Oct 2000 13:07:55 -0700


Patch #101810 has been updated. 

Project: 
Category: Modules
Status: Accepted
Summary: Fix MemoryError when decompressing empty string

Follow-Ups:

Date: 2000-Oct-06 13:07
By: jhylton

Comment:
Change this:
    if (0 < zst.avail_out)
to this:
    if (zst.avail_out > 0)
and it's fine.

Do you want to check it in or should I?

-------------------------------------------------------

-------------------------------------------------------
For more info, visit:

http://sourceforge.net/patch/?func=detailpatch&patch_id=101810&group_id=5470