[DatFile, SabreTools, Utilities] Fix DFD hashing issue

This commit is contained in:
Matt Nadareski
2017-11-26 21:00:49 -08:00
parent f9c6a5ec82
commit de7d144e00
3 changed files with 11 additions and 2 deletions

View File

@@ -1560,6 +1560,10 @@ namespace SabreTools.Library.Tools
{
input.Seek(offset, SeekOrigin.Begin);
}
else
{
input.Seek(0, SeekOrigin.Begin);
}
}
catch (NotSupportedException)
{
@@ -1630,6 +1634,10 @@ namespace SabreTools.Library.Tools
{
input.Seek(offset, SeekOrigin.Begin);
}
else
{
input.Seek(0, SeekOrigin.Begin);
}
}
catch (NotSupportedException)
{