trivial errors-as-warnings fix for gcc4.3.

This commit is contained in:
dwitte%stanford.edu 2008-02-03 05:06:57 +00:00
Родитель ac1398daaf
Коммит f428dec64a
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1045,7 +1045,7 @@ nsCookieService::ImportCookies(nsIFile *aCookieFile)
const nsASingleFragmentCString &host = Substring(buffer, hostIndex, isDomainIndex - hostIndex - 1);
// check for bad legacy cookies (domain not starting with a dot, or containing a port),
// and discard
if (isDomain && !host.IsEmpty() && host.First() != '.' ||
if ((isDomain && !host.IsEmpty() && host.First() != '.') ||
host.FindChar(':') != kNotFound) {
continue;
}