Skip to content

Commit d8c8be4

Browse files
committed
native: Workaround for MonitorEnter with pending exception
Android doesn't like it when we call MonitorEnter with an exception pending.
1 parent 7e833f7 commit d8c8be4

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

junixsocket-native/src/main/c/filedescriptors.c

+11
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,13 @@ int _closeFd(JNIEnv * env, jobject fd, int handle)
234234
return ret;
235235
}
236236

237+
// Android doesn't like it when we call MonitorEnter on a pending exception.
238+
// Temporarily hold on to that exception, and throw again afterwards.
239+
jthrowable throwable = (*env)->ExceptionOccurred(env);
240+
if(throwable != NULL) {
241+
(*env)->ExceptionClear(env);
242+
}
243+
237244
(*env)->MonitorEnter(env, fd);
238245
int fdHandle = _getFD(env, fd);
239246
_initFD(env, fd, -1);
@@ -243,6 +250,10 @@ int _closeFd(JNIEnv * env, jobject fd, int handle)
243250
#endif
244251
(*env)->MonitorExit(env, fd);
245252

253+
if(throwable != NULL) {
254+
(*env)->Throw(env, throwable);
255+
}
256+
246257
#if defined(_WIN32)
247258
jboolean isSocket;
248259
if(handleWin > 0) {

0 commit comments

Comments
 (0)