fix oom handling when parsing base64 v-card data, sr=mscott, part of bug 334384

This commit is contained in:
bienvenu%nventure.com 2006-05-01 23:25:04 +00:00
Родитель 0aad8a4f0c
Коммит f27ac5d690
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -979,7 +979,8 @@ static char * lexGetDataFromBase64()
bytes = (unsigned char*)PR_Realloc(bytes,bytesMax);
}
if (bytes == 0) {
mime_error("out of memory while processing BASE64 data\n");
mime_error("out of memory while processing BASE64 data\n");
break;
}
}
if (bytes) {