-
Notifications
You must be signed in to change notification settings - Fork 410
Open
Description
问题代码
#define D2C_GET_PENDING_EX \
exception = env->ExceptionOccurred(); \
env->ExceptionClear(); \
修复后代码
#define D2C_GET_PENDING_EX \
if (exception != NULL) \
env->DeleteLocalRef(exception); \
exception = env->ExceptionOccurred(); \
env->ExceptionClear(); \
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels