Skip to content

Commit

Permalink
Infer fixes for WolfSSLSocket
Browse files Browse the repository at this point in the history
  • Loading branch information
cconlon committed Apr 5, 2024
1 parent 749ee6e commit aa52ea4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/java/com/wolfssl/provider/jsse/WolfSSLSocket.java
Original file line number Diff line number Diff line change
Expand Up @@ -1781,7 +1781,7 @@ public synchronized SSLParameters getSSLParameters() {
* @throws SSLException if native JNI call fails or underlying
* WolfSSLSession has been freed
*/
public boolean sessionResumed() throws SSLException {
public synchronized boolean sessionResumed() throws SSLException {
if (this.ssl != null) {
try {
int resume = this.ssl.sessionReused();
Expand Down

0 comments on commit aa52ea4

Please sign in to comment.