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 ...@@ -223,10 +223,13 @@ JNICALL Java_com_sun_star_lib_connections_pipe_PipeConnection_createJNI
case CREATED: case CREATED:
osl_closePipe(npipe); osl_closePipe(npipe);
osl_releasePipe(npipe); osl_releasePipe(npipe);
/* fall through */
case GOTNAME: case GOTNAME:
rtl_uString_release(pname); rtl_uString_release(pname);
/* fall through */
case INMONITOR: case INMONITOR:
(*env)->MonitorExit(env, obj_this); (*env)->MonitorExit(env, obj_this);
/* fall through */
case START: case START:
osl_freeSecurityHandle(psec); osl_freeSecurityHandle(psec);
default: default:
...@@ -530,6 +533,7 @@ JNICALL Java_com_sun_star_lib_connections_pipe_PipeConnection_writeJNI ...@@ -530,6 +533,7 @@ JNICALL Java_com_sun_star_lib_connections_pipe_PipeConnection_writeJNI
{ {
case GOTBUFFER: case GOTBUFFER:
(*env)->ReleaseByteArrayElements(env, buffer, nbuff, JNI_ABORT); (*env)->ReleaseByteArrayElements(env, buffer, nbuff, JNI_ABORT);
/* fall through */
case INMONITOR: case INMONITOR:
(*env)->MonitorExit(env, obj_this); (*env)->MonitorExit(env, obj_this);
case START: 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