зеркало из https://github.com/mozilla/gecko-dev.git
Bug 883992 - Correctly compare the host string against an empty string in the gtk crash reporter app; r=ted
This commit is contained in:
Родитель
659a01fbc0
Коммит
f301f745e3
|
@ -145,7 +145,7 @@ void LoadProxyinfo()
|
|||
host = gconf_client_get_string(conf, HTTP_PROXY_DIR "/host", NULL);
|
||||
port = gconf_client_get_int(conf, HTTP_PROXY_DIR "/port", NULL);
|
||||
|
||||
if (port && host && host != '\0') {
|
||||
if (port && host && *host != '\0') {
|
||||
httpproxy = g_strdup_printf("http://%s:%d/", host, port);
|
||||
gHttpProxy = httpproxy;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче