diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-28 10:54:41 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-28 13:14:02 +0000 |
commit | 11ea31b5e468e3fd0865d0b4d1137dc514e36cc5 (patch) | |
tree | 5e279524896d7a58e19be014361c8cadbdde7002 /sal | |
parent | 51765361b3b9838f7814e9cd3305f83819cb6eb0 (diff) |
coverity#705205 Missing break in switch
Change-Id: Iaee3b73ceed5df9928514e55d00ac6292b8b2249
Diffstat (limited to 'sal')
-rw-r--r-- | sal/rtl/uri.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sal/rtl/uri.cxx b/sal/rtl/uri.cxx index 2d6c52277abc..20daac36024c 100644 --- a/sal/rtl/uri.cxx +++ b/sal/rtl/uri.cxx @@ -621,6 +621,7 @@ void SAL_CALL rtl_uriDecode(rtl_uString * pText, case rtl_UriDecodeToIuri: eCharset = RTL_TEXTENCODING_UTF8; + //fall-through default: // rtl_UriDecodeWithCharset, rtl_UriDecodeStrict { sal_Unicode const * p = pText->buffer; |