changeset 3951:6d1b98c84f85

7031238: Problem with fix for 6981922 Reviewed-by: chegar
author michaelm
date Fri, 25 Mar 2011 16:23:15 -0700
parents 8af27e4ecaed
children a50a7f8a847d
files src/windows/classes/java/net/TwoStacksPlainDatagramSocketImpl.java
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/windows/classes/java/net/TwoStacksPlainDatagramSocketImpl.java	Mon Mar 21 17:22:16 2011 -0700
+++ b/src/windows/classes/java/net/TwoStacksPlainDatagramSocketImpl.java	Fri Mar 25 16:23:15 2011 -0700
@@ -26,6 +26,7 @@
 
 import java.io.IOException;
 import java.io.FileDescriptor;
+import sun.net.ResourceManager;
 
 /**
  * This class defines the plain DatagramSocketImpl that is used for all
@@ -108,6 +109,7 @@
     protected void close() {
         if (fd != null || fd1 != null) {
             datagramSocketClose();
+            ResourceManager.afterUdpClose();
             fd = null;
             fd1 = null;
         }