Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.IO/StreamReader.cs')
-rw-r--r--mcs/class/corlib/System.IO/StreamReader.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/corlib/System.IO/StreamReader.cs b/mcs/class/corlib/System.IO/StreamReader.cs
index 0c4f4e1a4a9..ee3c854d652 100644
--- a/mcs/class/corlib/System.IO/StreamReader.cs
+++ b/mcs/class/corlib/System.IO/StreamReader.cs
@@ -420,7 +420,7 @@ namespace System.IO {
if (foundCR) // don't include the trailing CR if present
decoded_count--;
- line_builder.Append (decoded_buffer, begin, decoded_count - begin);
+ line_builder.Append (new string (decoded_buffer, begin, decoded_count - begin));
if (ReadBuffer () == 0) {
if (line_builder.Capacity > 32768) {
StringBuilder sb = line_builder;
@@ -433,7 +433,7 @@ namespace System.IO {
begin = pos;
end = FindNextEOL ();
if (end < decoded_count && end >= begin) {
- line_builder.Append (decoded_buffer, begin, end - begin);
+ line_builder.Append (new string (decoded_buffer, begin, end - begin));
if (line_builder.Capacity > 32768) {
StringBuilder sb = line_builder;
line_builder = null;