[Mono-bugs] [Bug 26821][Wis] Changed - Off by one error in mono/mono/metadata/icall.c, ves_icall_System_Reflection_Assembly_GetTypes

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
22 Jun 2002 09:41:39 -0000


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by lupus@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=26821

--- shadow/26821	Fri Jun 21 19:17:35 2002
+++ shadow/26821.tmp.28657	Sat Jun 22 05:41:39 2002
@@ -1,14 +1,14 @@
 Bug#: 26821
 Product: Mono/Runtime
 Version: unspecified
 OS: other
 OS Details: 
-Status: NEW   
-Resolution: 
-Severity: 
+Status: RESOLVED   
+Resolution: FIXED
+Severity: Unknown
 Priority: Wishlist
 Component: misc
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: bob@karr.ath.cx               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -41,6 +41,10 @@
 
 res = mono_array_new (domain, mono_defaults.monotype_class, count);
 
 with:
 
 res = mono_array_new (domain, mono_defaults.monotype_class, count-1);
+
+------- Additional Comments From lupus@ximian.com  2002-06-22 05:41 -------
+Thanks for the report. The fix in cvs is slightly different
+(I guess you didn't use the exportedOnly flag?).