r=peterlubczynski
sr=darin
Make it so the return values  from ExamineForProxy() are inspected for validity.
This commit is contained in:
edburns%acm.org 2001-05-17 01:03:12 +00:00
Родитель ea0db16e17
Коммит ca341224eb
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -2217,7 +2217,7 @@ NS_IMETHODIMP nsPluginHostImpl::FindProxyForURL(const char* url, char* *result)
return res;
}
if (!isProxyEnabled) {
if (!isProxyEnabled || !proxyHost.get() || proxyPort <= 0) {
*result = PL_strdup("DIRECT");
}
else {

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

@ -2217,7 +2217,7 @@ NS_IMETHODIMP nsPluginHostImpl::FindProxyForURL(const char* url, char* *result)
return res;
}
if (!isProxyEnabled) {
if (!isProxyEnabled || !proxyHost.get() || proxyPort <= 0) {
*result = PL_strdup("DIRECT");
}
else {