Bug 883992 - Correctly compare the host string against an empty string in the gtk crash reporter app; r=ted

This commit is contained in:
Ehsan Akhgari 2013-06-17 15:40:22 -04:00
Родитель 659a01fbc0
Коммит f301f745e3
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -145,7 +145,7 @@ void LoadProxyinfo()
host = gconf_client_get_string(conf, HTTP_PROXY_DIR "/host", NULL); host = gconf_client_get_string(conf, HTTP_PROXY_DIR "/host", NULL);
port = gconf_client_get_int(conf, HTTP_PROXY_DIR "/port", 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); httpproxy = g_strdup_printf("http://%s:%d/", host, port);
gHttpProxy = httpproxy; gHttpProxy = httpproxy;
} }