You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a connection is shutdown (e.g. using maintenanceManager.shutdownDatabase(MaintenanceManager.SHUTDOWN_FORCE, 0);), or otherwise produces an exception during some processing done during the close, FBConnection.close() may produce a NullPointerException when calling mc.close(this);, as mc was set to null internally by the exception handler.
This is already fixed in Jaybird 6 by some refactoring done there. Applying the same changes in Jaybird 5 should prevent this issue.
The text was updated successfully, but these errors were encountered:
When a connection is shutdown (e.g. using
maintenanceManager.shutdownDatabase(MaintenanceManager.SHUTDOWN_FORCE, 0);
), or otherwise produces an exception during some processing done during the close,FBConnection.close()
may produce a NullPointerException when callingmc.close(this);
, asmc
was set tonull
internally by the exception handler.This is already fixed in Jaybird 6 by some refactoring done there. Applying the same changes in Jaybird 5 should prevent this issue.
The text was updated successfully, but these errors were encountered: