Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(423)

Unified Diff: content/child/npapi/plugin_url_fetcher.cc

Issue 750093005: Fix unititialized read. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/valgrind/drmemory/suppressions.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/npapi/plugin_url_fetcher.cc
diff --git a/content/child/npapi/plugin_url_fetcher.cc b/content/child/npapi/plugin_url_fetcher.cc
index c7db56ce9ca8fffd165fb9510cabe6467834338e..2b16ee63ce9cd177af1a6ecf4944623d70baa8d8 100644
--- a/content/child/npapi/plugin_url_fetcher.cc
+++ b/content/child/npapi/plugin_url_fetcher.cc
@@ -116,6 +116,7 @@ PluginURLFetcher::PluginURLFetcher(PluginStreamUrl* plugin_stream,
request_info.routing_id = render_view_id;
// ServiceWorker is disabled for NPAPI.
request_info.skip_service_worker = true;
+ request_info.should_reset_appcache = false;
groby-ooo-7-16 2014/12/01 17:51:10 Please do set a default value in the RequestInfo c
eustas 2014/12/02 07:06:02 Surely.
RequestExtraData extra_data;
extra_data.set_render_frame_id(render_frame_id);
« no previous file with comments | « no previous file | tools/valgrind/drmemory/suppressions.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698