diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-20 21:34:43 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-20 21:34:43 +0000 |
commit | 9fd5ef1c0abde8ab8a27b33100da9cbf8ca393aa (patch) | |
tree | 9ae9869615bb86a416adec42d4082298e165f0cf /chrome/service/cloud_print/print_system_cups.cc | |
parent | e307f57e183fdc76986c918d37f284ab2940c343 (diff) | |
download | chromium_src-9fd5ef1c0abde8ab8a27b33100da9cbf8ca393aa.zip chromium_src-9fd5ef1c0abde8ab8a27b33100da9cbf8ca393aa.tar.gz chromium_src-9fd5ef1c0abde8ab8a27b33100da9cbf8ca393aa.tar.bz2 |
Coverity: Initialize member variables.
CID=1631,9315,9316,9447,10912,13053,13396,13397,13449
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3934001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63265 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service/cloud_print/print_system_cups.cc')
-rw-r--r-- | chrome/service/cloud_print/print_system_cups.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/service/cloud_print/print_system_cups.cc b/chrome/service/cloud_print/print_system_cups.cc index d4d5a9a..b8a7378 100644 --- a/chrome/service/cloud_print/print_system_cups.cc +++ b/chrome/service/cloud_print/print_system_cups.cc @@ -165,7 +165,9 @@ class PrintSystemCUPS : public PrintSystem { public: explicit PrinterWatcherCUPS(PrintSystemCUPS* print_system, const std::string& printer_name) - : printer_name_(printer_name), print_system_(print_system) { + : printer_name_(printer_name), + delegate_(NULL), + print_system_(print_system) { } // PrintSystem::PrinterWatcher interface |