jdk/src/solaris/classes/sun/nio/ch/SinkChannelImpl.java
changeset 12440 2689ca179e22
parent 5506 202f599c92aa
child 16921 e70261f11307
--- a/jdk/src/solaris/classes/sun/nio/ch/SinkChannelImpl.java	Tue Apr 17 16:13:28 2012 +0400
+++ b/jdk/src/solaris/classes/sun/nio/ch/SinkChannelImpl.java	Tue Apr 17 07:14:14 2012 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -84,7 +84,8 @@
 
     protected void implCloseSelectableChannel() throws IOException {
         synchronized (stateLock) {
-            nd.preClose(fd);
+            if (state != ST_KILLED)
+                nd.preClose(fd);
             long th = thread;
             if (th != 0)
                 NativeThread.signal(th);