src/windows/classes/sun/net/dns/ResolverConfigurationImpl.java

Print this page

        

*** 159,169 **** static native int notifyAddrChange0(); static { java.security.AccessController.doPrivileged( ! new sun.security.action.LoadLibraryAction("net")); init0(); // start the address listener thread AddressChangeListener thr = new AddressChangeListener(); thr.setDaemon(true); --- 159,174 ---- static native int notifyAddrChange0(); static { java.security.AccessController.doPrivileged( ! new java.security.PrivilegedAction<Void>() { ! public Void run() { ! System.loadLibrary("net"); ! return null; ! } ! }); init0(); // start the address listener thread AddressChangeListener thr = new AddressChangeListener(); thr.setDaemon(true);