Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit a717c20

Browse files
committed
Fix for copy address bytes to result
1 parent 4b387bd commit a717c20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UUIDGenerator.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ public UUID GenerateTimeBasedUUID(PhysicalAddress addr)
325325
{
326326
byte[] contents = new byte[16];
327327

328-
addr.GetAddressBytes();
328+
addr.GetAddressBytes().CopyTo(contents, 10);
329329

330330
lock (mTimerLock)
331331
{

0 commit comments

Comments
 (0)