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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@xamarin.com>2014-05-23 00:29:10 +0400
committerDavid Karlaš <david.karlas@xamarin.com>2014-05-23 00:29:10 +0400
commita98813b1b0b6bfa862270bd41a932c5b98f505fb (patch)
tree4cafb617c5f482245093f8dc2ea7543b415160c8 /main/src/addins/MonoDevelop.Debugger.Win32
parentcf5394191f0fbcf70bb494610d4ee093f835577f (diff)
[CorDebugger] Fixed ArrayAdaptor.GetElements
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger.Win32')
-rw-r--r--main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/ArrayAdaptor.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/ArrayAdaptor.cs b/main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/ArrayAdaptor.cs
index a25a078d10..2a2188e8ae 100644
--- a/main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/ArrayAdaptor.cs
+++ b/main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/ArrayAdaptor.cs
@@ -73,7 +73,7 @@ namespace MonoDevelop.Debugger.Win32
idx[i] = indices[i];
for (int i = 0; i < count; i++) {
- elements.Add (GetElement (idx));
+ elements.Add (GetElement ((int[])idx.Clone ()));
idx[idx.Length - 1]++;
}