diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-03-04 13:24:04 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-03-04 13:26:32 +0100 |
commit | b2cc8263bbfc01a7b8f51fbe2c56b61bd4da3b5c (patch) | |
tree | d749f21f04abc1fa26877033620b3a6ab1fe90df /ucb/source | |
parent | dc00ad1e823e3b36619cd04c7e4d169362e199b3 (diff) |
Fix "may be used uninitialized" warning
Change-Id: I6d2ac90177bd3194e0e3c23ee7c8dd634bb64228
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/ucp/webdav-neon/webdavcontent.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx b/ucb/source/ucp/webdav-neon/webdavcontent.cxx index b3d5f49f6447..7648b971efa9 100644 --- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx +++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx @@ -3083,7 +3083,7 @@ Content::ResourceType Content::getResourceType( } } - ResourceType eResourceType; + ResourceType eResourceType = UNKNOWN; const rtl::OUString & rURL = rResAccess->getURL(); const rtl::OUString aScheme( |