-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
System.ArgumentException: Destination array is not long enough to copy all the items in the collection. Check array index and length.
method: com.tikumo.regis3.RegValueEntry.SetBinaryType(RegValueEntryKind kind, byte[] bytes)
else if (Kind == RegValueEntryKind.QWord)
{
try
{
Value = BitConverter.ToInt64(bytes, 0);
}
catch (Exception e)
{
Console.WriteLine(e);
throw;
}
}
Cause: Need to verify sufficient bytes are in byte array for the conversion ToInt64() to succeed.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels