From 322d5a6701e45f31c484353988c37f59429a4b90 Mon Sep 17 00:00:00 2001 From: "pnunn%netscape.com" Date: Tue, 24 Aug 1999 23:01:16 +0000 Subject: [PATCH] Removing an assert. pnunn. --- modules/libimg/gifcom/gif.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/libimg/gifcom/gif.cpp b/modules/libimg/gifcom/gif.cpp index 3540ce25456..97f70348b23 100644 --- a/modules/libimg/gifcom/gif.cpp +++ b/modules/libimg/gifcom/gif.cpp @@ -792,7 +792,7 @@ il_gif_write(il_container *ic, const uint8 *buf, int32 len) /* If this assert fires, some upstream data provider ignored the zero return value from il_gif_write_ready() which says not to send any more data to this stream until the delay timeout fires. */ - PR_ASSERT ((len == 0) || (gs->gathered < MAX_READ_AHEAD)); + // PR_ASSERT ((len == 0) || (gs->gathered < MAX_READ_AHEAD)); if (!((len == 0) || (gs->gathered < MAX_READ_AHEAD))) return MK_INTERRUPTED;