summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_channel_posix.cc
diff options
context:
space:
mode:
authordmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-15 23:06:22 +0000
committerdmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-15 23:06:22 +0000
commit2ca07d7d2e554616bb6a99ac51f47e17e9513994 (patch)
tree0e63ed6f42b21851527f9482f0ceacd22ea7e544 /ipc/ipc_channel_posix.cc
parent1cc5fd3e62243d1ef9594f8cc4974f4ed755cae9 (diff)
downloadchromium_src-2ca07d7d2e554616bb6a99ac51f47e17e9513994.zip
chromium_src-2ca07d7d2e554616bb6a99ac51f47e17e9513994.tar.gz
chromium_src-2ca07d7d2e554616bb6a99ac51f47e17e9513994.tar.bz2
Fix up problem with uninitialized member variable.
BUG=none TEST=build Review URL: http://codereview.chromium.org/5836002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69341 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_channel_posix.cc')
-rw-r--r--ipc/ipc_channel_posix.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/ipc/ipc_channel_posix.cc b/ipc/ipc_channel_posix.cc
index a82e591..86e6307 100644
--- a/ipc/ipc_channel_posix.cc
+++ b/ipc/ipc_channel_posix.cc
@@ -298,6 +298,7 @@ Channel::ChannelImpl::ChannelImpl(const IPC::ChannelHandle& channel_handle,
#endif // IPC_USES_READWRITE
pipe_name_(channel_handle.name),
listener_(listener),
+ must_unlink_(false),
factory_(this) {
// Check to see if we want to implement using domain sockets.
bool uses_domain_socket = false;