Bug 636133 Followup to remove unnecessary use of PromiseFlatString r=bienvenu

This commit is contained in:
Neil Rashbrook 2011-05-28 13:47:24 +01:00
Родитель 86114735db
Коммит 2f6f0c5c4c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -126,7 +126,7 @@ nsresult nsParseImapMessageURI(const char* uri, nsCString& folderURI, PRUint32 *
else
keyStr = Substring(uriStr, keySeparator + 1);
*key = strtoul(PromiseFlatCString(keyStr).get(), nsnull, 10);
*key = strtoul(keyStr.get(), nsnull, 10);
if (part && keyEndSeparator != -1)
{