summaryrefslogtreecommitdiff
path: root/jvmfwk
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-05-10 17:02:32 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-05-10 17:02:32 +0200
commitbade0a1517245c6f57caf586de6c9c8bc49ed4b9 (patch)
tree7498eeed482e567890b84839f8f9209302fec7e4 /jvmfwk
parent2188f877ed4c5536e21dfac125d04bb4364ce330 (diff)
Add SAL_FALLTHROUGH, where apparently appropriate
Change-Id: I0dccdf984f4b171feab20e8400376cf8846ffe2e
Diffstat (limited to 'jvmfwk')
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/util.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/util.cxx b/jvmfwk/plugins/sunmajor/pluginlib/util.cxx
index 90e813e351ec..f1d33b1313ee 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/util.cxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/util.cxx
@@ -300,6 +300,7 @@ FileHandleReader::readLine(OString * pLine)
{
case 0x0D:
m_bLf = true;
+ SAL_FALLTHROUGH;
case 0x0A:
*pLine += OString(m_aBuffer + nStart,
m_nIndex - 1 - nStart);
@@ -360,6 +361,7 @@ void AsynchReader::execute()
{
case osl_File_E_PIPE: //HACK! for windows
nRead = 0;
+ SAL_FALLTHROUGH;
case osl_File_E_None:
break;
default: