You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the TExifSection.GetDateTimeValue Move(SubSecsTag.Data^, S[1], Max(3, SubSecsTag.ElementCount - 1));
must be replaced by Move(SubSecsTag.Data^, S[1], Min(3, SubSecsTag.ElementCount - 1));
Happens when SubSecs tag length > 3.
In the TExifSection.GetDateTimeValue
Move(SubSecsTag.Data^, S[1], Max(3, SubSecsTag.ElementCount - 1));must be replaced by
Move(SubSecsTag.Data^, S[1], Min(3, SubSecsTag.ElementCount - 1));