fix unix bustage - can't construct objects and pass them as & parameters at the same time

This commit is contained in:
alecf%netscape.com 1999-02-26 18:25:57 +00:00
Родитель acabbd6899
Коммит 134ab872e6
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -127,7 +127,8 @@ nsPop3Sink::BeginMailDelivery(PRBool* aBool)
PR_WRONLY | PR_CREATE_FILE | PR_APPEND);
// create a new mail parser
m_newMailParser = new nsParseNewMailState(NULL, nsFilePath(path));
nsFilePath parsePath(path);
m_newMailParser = new nsParseNewMailState(nsnull, parsePath);
PR_FREEIF(path);
#ifdef DEBUG