Skip to content

Commit

Permalink
- Merging commits "bb239160ea2f2e2750c57bdbd271029aa644df9a" with des…
Browse files Browse the repository at this point in the history
…c"SocketException on association release fix dcm4che#244" from master to generic-config.
  • Loading branch information
sjamaluddeen committed May 29, 2018
1 parent 3a64ce9 commit 1b21da8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dcm4che-net/src/main/java/org/dcm4che3/net/Association.java
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,9 @@ void writeAReleaseRQ() throws IOException {
LOG.info("{} << A-RELEASE-RQ", name);
enterState(State.Sta7);
stopTimeout();
encoder.writeAReleaseRQ();
synchronized (this) {
encoder.writeAReleaseRQ();
}
startReleaseTimeout();
}

Expand Down

0 comments on commit 1b21da8

Please sign in to comment.