[Mono-bugs] [Bug 536474] Mono hangs during process termination
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Wed Sep 9 17:37:07 EDT 2009
http://bugzilla.novell.com/show_bug.cgi?id=536474
User vargaz at gmail.com added comment
http://bugzilla.novell.com/show_bug.cgi?id=536474#c5
Zoltan Varga <vargaz at gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|io-layer |Sys.Data
AssignedTo|lupus at novell.com |bnc-blr-team-mono at forge.pro
| |vo.novell.com
Product|Mono: Runtime |Mono: Class Libraries
--- Comment #5 from Zoltan Varga <vargaz at gmail.com> 2009-09-09 15:37:06 MDT ---
The new version fails for me as well, but not because of a runtime problem,
but because the
s.Target.Merge(s.Source);
line never finishes, instead consuming all available memory.
The following testcase reproduces the problem:
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
using System;
using System.Data;
public class Tests
{
public static void Main (String[] args) {
DataTable dataTable = new DataTable("Test");
dataTable.Columns.Add("Test");
dataTable.Rows.Add("Test");
DataSet dataSet = new DataSet("Test");
dataSet.Tables.Add(dataTable);
dataSet.Merge (dataTable);
}
}
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
-> Sys.Data
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
More information about the mono-bugs
mailing list