bug#17781, 8520, 3791: ABR in gif comment field. pnunn. rev:neeti@netscape.com.

This commit is contained in:
pnunn%netscape.com 2000-01-13 23:04:20 +00:00
Родитель da39865022
Коммит e05b3154cc
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -1158,10 +1158,11 @@ il_gif_write(il_container *ic, const PRUint8 *buf, int32 len)
break;
case gif_consume_comment:
{
BlockAllocCat(ic->comment, ic->comment_length, (char*)q, gs->count + 1);
{
BlockAllocCat(ic->comment, ic->comment_length, (char*)q, gs->count);
ic->comment_length += gs->count;
ic->comment[ic->comment_length] = 0;
BlockAllocCat(ic->comment, ic->comment_length, "", 1);
ic->comment_length++;
GETN(1, gif_comment_extension);
}
break;