File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -2670,6 +2670,7 @@ procedure TTimeLogBits.Expand(out Date: TSynSystemTime);
2670
2670
Date.Hour := (V shr (6 + 6 )) and 31 ;
2671
2671
Date.Minute := (V shr 6 ) and 63 ;
2672
2672
Date.Second := V and 63 ;
2673
+ Date.MilliSecond := 0 ;
2673
2674
end ;
2674
2675
2675
2676
procedure TTimeLogBits.From (const S: RawUtf8);
Original file line number Diff line number Diff line change @@ -2122,7 +2122,7 @@ TCryptStoreAlgo = class(TCryptAlgo)
2122
2122
// - could be seen as a certificates store of the poor (tm)
2123
2123
// - per usage lookup is in O(1) so faster than iterative ICryptCert.GetUsage
2124
2124
// - also features simple PEM / binary serialization methods
2125
- // - should be initialized by Clear at startup, or set as a TObject field
2125
+ // - should be initialized by Clear at startup, or set as a class field
2126
2126
{ $ifdef USERECORDWITHMETHODS}
2127
2127
TCryptCertPerUsage = record
2128
2128
{ $else}
@@ -2134,7 +2134,7 @@ TCryptCertPerUsage = record
2134
2134
// / all usages currently stored in this list
2135
2135
Usages: TCryptCertUsages;
2136
2136
// / lookup table used by GetUsage()/PerUsage()
2137
- // - 0 means no certificate, or store the index in Cert [] + 1
2137
+ // - 0 means no certificate, or store the index in List [] + 1
2138
2138
Index: array [TCryptCertUsage] of byte;
2139
2139
// / reset all storage and indexes
2140
2140
procedure Clear ;
Original file line number Diff line number Diff line change 1
- '2.1.5557 '
1
+ '2.1.5558 '
You can’t perform that action at this time.
0 commit comments