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

Unified Diff: webkit/plugins/ppapi/ppb_audio_impl.cc

Issue 7215027: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 6 months 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
Index: webkit/plugins/ppapi/ppb_audio_impl.cc
diff --git a/webkit/plugins/ppapi/ppb_audio_impl.cc b/webkit/plugins/ppapi/ppb_audio_impl.cc
index b5926498bd4d9d7f60b1c5b16c07f177c876b7e7..69c4376993d2569d1e2b5441077f3021ef979e6a 100644
--- a/webkit/plugins/ppapi/ppb_audio_impl.cc
+++ b/webkit/plugins/ppapi/ppb_audio_impl.cc
@@ -37,7 +37,8 @@ PPB_Audio_Impl::PPB_Audio_Impl(PluginInstance* instance)
: Resource(instance),
config_id_(0),
audio_(NULL),
- create_callback_pending_(false) {
+ create_callback_pending_(false),
+ shared_memory_size_for_create_callback_(0) {
create_callback_ = PP_MakeCompletionCallback(NULL, NULL);
}

Powered by Google App Engine
This is Rietveld 408576698