From 51b648a1185232929dc35ea748786129516da0e5 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Mon, 12 Aug 2013 12:12:47 -0400 Subject: [PATCH] Fixed build breakage from my previous commit --- mcs/class/corlib/System.Text/Decoder.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/mcs/class/corlib/System.Text/Decoder.cs b/mcs/class/corlib/System.Text/Decoder.cs index 34995ca91d1..c44176989c8 100644 --- a/mcs/class/corlib/System.Text/Decoder.cs +++ b/mcs/class/corlib/System.Text/Decoder.cs @@ -112,6 +112,7 @@ public abstract class Decoder Marshal.Copy ((IntPtr) bytes, barr, 0, byteCount); int charsUsed = GetChars (barr, 0, byteCount, carr, 0, flush); Marshal.Copy (carr, 0, (IntPtr) chars, charsUsed); + return charsUsed; } [ComVisible (false)] -- 2.25.1