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

Unified Diff: chrome/service/cloud_print/print_system_cups.cc

Issue 4525008: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 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 | « chrome/service/cloud_print/cloud_print_url_fetcher.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/cloud_print/print_system_cups.cc
diff --git a/chrome/service/cloud_print/print_system_cups.cc b/chrome/service/cloud_print/print_system_cups.cc
index 50d79dc0e4ce0ec017dfb78a7cab5d944bcf3f30..b11b413677c4f99626b60505ac6eaae14d41a681 100644
--- a/chrome/service/cloud_print/print_system_cups.cc
+++ b/chrome/service/cloud_print/print_system_cups.cc
@@ -134,7 +134,8 @@ class PrintServerWatcherCUPS
: public PrintSystem::PrintServerWatcher {
public:
explicit PrintServerWatcherCUPS(PrintSystemCUPS* print_system)
- : print_system_(print_system) {
+ : print_system_(print_system),
+ delegate_(NULL) {
}
~PrintServerWatcherCUPS() {
StopWatching();
« no previous file with comments | « chrome/service/cloud_print/cloud_print_url_fetcher.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698