diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:27:17 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:27:17 -0700 |
commit | e0ff940e1adb68d3575705ebf1546d9f07ad3b4a (patch) | |
tree | 792ac6996d1225c0955027050296126bc8ff6e26 /contrib/dotzlib/DotZLib/Inflater.cs | |
parent | 7df877eccdd826e94df53215f65dee639428e83f (diff) | |
download | zlib-1.2.3.8.tar.gz zlib-1.2.3.8.tar.bz2 zlib-1.2.3.8.zip |
zlib 1.2.3.8v1.2.3.8
Diffstat (limited to 'contrib/dotzlib/DotZLib/Inflater.cs')
-rw-r--r-- | contrib/dotzlib/DotZLib/Inflater.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/dotzlib/DotZLib/Inflater.cs b/contrib/dotzlib/DotZLib/Inflater.cs index 4e60cda..8ed5451 100644 --- a/contrib/dotzlib/DotZLib/Inflater.cs +++ b/contrib/dotzlib/DotZLib/Inflater.cs | |||
@@ -1,7 +1,7 @@ | |||
1 | // | 1 | // |
2 | // © Copyright Henrik Ravn 2004 | 2 | // © Copyright Henrik Ravn 2004 |
3 | // | 3 | // |
4 | // Use, modification and distribution are subject to the Boost Software License, Version 1.0. | 4 | // Use, modification and distribution are subject to the Boost Software License, Version 1.0. |
5 | // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | 5 | // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
6 | // | 6 | // |
7 | 7 | ||
@@ -11,7 +11,7 @@ using System.Runtime.InteropServices; | |||
11 | 11 | ||
12 | namespace DotZLib | 12 | namespace DotZLib |
13 | { | 13 | { |
14 | 14 | ||
15 | /// <summary> | 15 | /// <summary> |
16 | /// Implements a data decompressor, using the inflate algorithm in the ZLib dll | 16 | /// Implements a data decompressor, using the inflate algorithm in the ZLib dll |
17 | /// </summary> | 17 | /// </summary> |
@@ -84,7 +84,7 @@ namespace DotZLib | |||
84 | public override void Finish() | 84 | public override void Finish() |
85 | { | 85 | { |
86 | int err; | 86 | int err; |
87 | do | 87 | do |
88 | { | 88 | { |
89 | err = inflate(ref _ztream, (int)FlushTypes.Finish); | 89 | err = inflate(ref _ztream, (int)FlushTypes.Finish); |
90 | OnDataAvailable(); | 90 | OnDataAvailable(); |