Bugzilla Bug 353729: handle PR_vsmprintf failure in PR_vfprintf. r=timeless

This commit is contained in:
wtchang%redhat.com 2006-11-30 00:39:19 +00:00
Родитель bb9ff86997
Коммит 4b8def40c4
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -58,6 +58,9 @@ PR_IMPLEMENT(PRUint32) PR_vfprintf(PRFileDesc* fd, const char *fmt, va_list ap)
/* XXX this could be better */
PRUint32 rv, len;
char* msg = PR_vsmprintf(fmt, ap);
if (NULL == msg) {
return -1;
}
len = strlen(msg);
#ifdef XP_OS2
/*