зеркало из https://github.com/mozilla/pjs.git
trivial errors-as-warnings fix for gcc4.3.
This commit is contained in:
Родитель
ac1398daaf
Коммит
f428dec64a
|
@ -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;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче