summaryrefslogtreecommitdiffstats
path: root/chrome/service/cloud_print/print_system_cups.cc
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-06 02:24:07 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-06 02:24:07 +0000
commitc75265fb3ef03bc1c84782f1b0a742747f32ed4a (patch)
tree5a7c24712d5fbc4a300ab5211c3bc6a9199f0483 /chrome/service/cloud_print/print_system_cups.cc
parent2dd85485b88e6a6a7a2dd4b247b2e55fffb2b803 (diff)
downloadchromium_src-c75265fb3ef03bc1c84782f1b0a742747f32ed4a.zip
chromium_src-c75265fb3ef03bc1c84782f1b0a742747f32ed4a.tar.gz
chromium_src-c75265fb3ef03bc1c84782f1b0a742747f32ed4a.tar.bz2
Coverity: Initialize member variables.
CID=13537,13538,13612 BUG=none TEST=none Review URL: http://codereview.chromium.org/4525008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65300 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.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/service/cloud_print/print_system_cups.cc b/chrome/service/cloud_print/print_system_cups.cc
index 50d79dc..b11b413 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();