зеркало из https://github.com/mozilla/pjs.git
bug=80848
r=peterlubczynski sr=darin Make it so the return values from ExamineForProxy() are inspected for validity.
This commit is contained in:
Родитель
ea0db16e17
Коммит
ca341224eb
|
@ -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 {
|
||||
|
|
Загрузка…
Ссылка в новой задаче