Explorar el Código

FileTimeHelper.ReadNullableFileTime: throw InvalidDataException if FILETIME is negative

Tal Aloni hace 8 años
padre
commit
bef9bd6e69
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. 5 1
      SMBLibrary/Helpers/FileTimeHelper.cs

+ 5 - 1
SMBLibrary/Helpers/FileTimeHelper.cs

@@ -52,10 +52,14 @@ namespace SMBLibrary
             {
                 return DateTime.FromFileTimeUtc(span);
             }
-            else
+            else if (span == 0)
             {
                 return null;
             }
+            else
+            {
+                throw new System.IO.InvalidDataException("FILETIME cannot be negative");
+            }
         }
 
         public static DateTime? ReadNullableFileTime(byte[] buffer, ref int offset)