diff options
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_uri.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/tdoc/tdoc_uri.cxx b/ucb/source/ucp/tdoc/tdoc_uri.cxx index 5ae5a5cec9f9..e582367b19ee 100644 --- a/ucb/source/ucp/tdoc/tdoc_uri.cxx +++ b/ucb/source/ucp/tdoc/tdoc_uri.cxx @@ -43,7 +43,7 @@ void Uri::init() const m_eState = INVALID; // Check for proper length: must be at least length of <sheme>:/ - if ( ( m_aUri.getLength() < TDOC_URL_SCHEME_LENGTH + 2 ) ) + if ( m_aUri.getLength() < TDOC_URL_SCHEME_LENGTH + 2 ) { // Invalid length (to short). return; |