Skip to content

Commit a64ed55

Browse files
MatthiasJentschjosesimoes
authored andcommitted
Fix bug in FromBase64CharArray (#55)
1 parent ce736ff commit a64ed55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/nanoFramework.CoreLibrary/System/Convert.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ public static byte[] FromBase64CharArray(char[] inArray, int offset, int length)
293293
var destinationArray = new char[length];
294294
Array.Copy(inArray, offset, destinationArray, 0, length);
295295

296-
return FromBase64CharArray(inArray, length);
296+
return FromBase64CharArray(destinationArray, length);
297297
}
298298

299299
[MethodImpl(MethodImplOptions.InternalCall)]

0 commit comments

Comments
 (0)