From 253dcf8cd4bc3cb6ad7149fdd0be67f68224b62a Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Tue, 3 Jan 2012 17:26:13 +0000 Subject: [PATCH] Linux: Initialize the 'proxy_type' variable to make the compiler happy. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@452 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- tests/cefclient/cefclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cefclient/cefclient.cpp b/tests/cefclient/cefclient.cpp index 24f4ab58a..e35e05be1 100644 --- a/tests/cefclient/cefclient.cpp +++ b/tests/cefclient/cefclient.cpp @@ -221,7 +221,7 @@ void AppGetSettings(CefSettings& settings, CefRefPtr& app) // Retrieve command-line proxy configuration, if any. bool has_proxy = false; - cef_proxy_type_t proxy_type; + cef_proxy_type_t proxy_type = PROXY_TYPE_DIRECT; CefString proxy_config; if (g_command_line->HasSwitch(cefclient::kProxyType)) {