浏览代码

Check for stream before closing.

woollybah 6 年之前
父节点
当前提交
a65905e6f3
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      stream.mod/stream.bmx

+ 4 - 1
stream.mod/stream.bmx

@@ -485,7 +485,10 @@ Type TStreamWrapper Extends TStream
 	End Method
 
 	Method Close() Override
-		_stream.Close
+		If _stream Then
+			_stream.Close
+			_stream = Null
+		End If
 	End Method
 
 	Method Read:Long( buf:Byte Ptr,count:Long ) Override