Skip to content

Commit 6486c90

Browse files
committedMar 8, 2024·
Check CallbackReference#cbstruct for null when checking existing Reference
The CallbackReference is held in a WeahHashMap, where it might be removed from when it becomes eligable for GC. For this there is a null guard in place, but when the callback reference is explicitly closed, the associated native structure is freed and "nulled", this case also needs to be guarded.
1 parent 16e036a commit 6486c90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/com/sun/jna/CallbackReference.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ private static Pointer getFunctionPointer(Callback cb, boolean direct) {
508508
Map<Callback, CallbackReference> map = direct ? directCallbackMap : callbackMap;
509509
synchronized(pointerCallbackMap) {
510510
CallbackReference cbref = map.get(cb);
511-
if (cbref == null) {
511+
if (cbref == null || cbref.cbstruct == null) {
512512
cbref = new CallbackReference(cb, callingConvention, direct);
513513
map.put(cb, cbref);
514514
pointerCallbackMap.put(cbref.getTrampoline(),

0 commit comments

Comments
 (0)
Please sign in to comment.