Initialize a buffer before calling the MIME decoder, bug 32013, r=ftang.

This commit is contained in:
nhotta%netscape.com 2000-03-20 22:42:40 +00:00
Родитель a8a5abb86f
Коммит 8fecfe9a63
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -58,6 +58,9 @@ nsMimeConverter::DecodeMimePartIIStr(const nsCString& header,
char *decodedCstr = nsnull;
nsresult res = NS_OK;
// initialize the charset buffer
PL_strcpy(charsetNameBuffer, "us-ascii");
// apply MIME decode.
decodedCstr = MIME_DecodeMimePartIIStr(header,
charsetNameBuffer, eatContinuations);