Skip to content

Commit ee158c7

Browse files
committed
minor fix
1 parent f9439a8 commit ee158c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Base64.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public unsafe static OperationStatus DecodeFromBase64(ReadOnlySpan<char> source,
6262
//}
6363
if (Avx2.IsSupported)
6464
{
65-
return GetPointerToFirstInvalidByteAvx2(pInputBuffer, inputLength, out Utf16CodeUnitCountAdjustment, out ScalarCodeUnitCountAdjustment);
65+
return AVX2.Base64.DecodeFromBase64AVX2(source, dest, out bytesConsumed, out bytesWritten, isUrl);
6666
}
6767
if (Ssse3.IsSupported && Popcnt.IsSupported)
6868
{

0 commit comments

Comments
 (0)