Kaydet (Commit) 8af92866 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror=implicit-fallthrough= (GCC 7)

Change-Id: I703a5f19536b08a87f2282a278218d0fcecfb515
üst e57ca028
......@@ -223,10 +223,13 @@ JNICALL Java_com_sun_star_lib_connections_pipe_PipeConnection_createJNI
case CREATED:
osl_closePipe(npipe);
osl_releasePipe(npipe);
/* fall through */
case GOTNAME:
rtl_uString_release(pname);
/* fall through */
case INMONITOR:
(*env)->MonitorExit(env, obj_this);
/* fall through */
case START:
osl_freeSecurityHandle(psec);
default:
......@@ -530,6 +533,7 @@ JNICALL Java_com_sun_star_lib_connections_pipe_PipeConnection_writeJNI
{
case GOTBUFFER:
(*env)->ReleaseByteArrayElements(env, buffer, nbuff, JNI_ABORT);
/* fall through */
case INMONITOR:
(*env)->MonitorExit(env, obj_this);
case START:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment