Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LibZipSharp.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<_LibZipSharpAssemblyVersion>2.0.2</_LibZipSharpAssemblyVersion>
<_LibZipSharpAssemblyVersion>2.0.3</_LibZipSharpAssemblyVersion>
<!--
Nuget Version. You can append things like -alpha-1 etc to this value.
But always leave the $(_LibZipSharpAssemblyVersion) value at the start.
Expand Down
2 changes: 1 addition & 1 deletion LibZipSharp/Xamarin.Tools.Zip/ZipArchive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ internal static unsafe Int64 stream_callback (IntPtr state, IntPtr data, UInt64
if (offset < 0) {
return offset;
}
if (offset != stream.Seek (offset, SeekOrigin.Begin)) {
if (offset != destination.Seek (offset, SeekOrigin.Begin)) {
return -1;
}
break;
Expand Down