diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-30 12:56:32 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-30 12:56:32 +0300 |
commit | e889874bf89c2e11a3c07b052cea6f0988a5a671 (patch) | |
tree | b0e4d05f895affc7720171ddd510a8b91f4469b3 /ucb | |
parent | 24be5b2728ba7a5c0ebcc53a37bc46b05e889133 (diff) |
WaE: 'bRemovable' may be used uninitialized in this function
Change-Id: I924c3d8ad246774fbf35e427565025aeb89155d7
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/file/filglob.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/file/filglob.cxx b/ucb/source/ucp/file/filglob.cxx index 5111594e6c87..c0bd6f915feb 100644 --- a/ucb/source/ucp/file/filglob.cxx +++ b/ucb/source/ucp/file/filglob.cxx @@ -62,7 +62,7 @@ namespace { { OUString aResourceName; OUString aResourceType; - bool bRemovable; + bool bRemovable = false; bool bResourceName = false; bool bResourceType = false; bool bRemoveProperty = false; |