[Mono-bugs] [Bug 51376][Wis] New - mono-0.28.99.20031124 fails in metadata\threads.c

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 25 Nov 2003 06:41:25 -0500 (EST)


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 piyush.garyali@honeywell.com.

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

--- shadow/51376	2003-11-25 06:41:25.000000000 -0500
+++ shadow/51376.tmp.16322	2003-11-25 06:41:25.000000000 -0500
@@ -0,0 +1,53 @@
+Bug#: 51376
+Product: Mono/Runtime
+Version: unspecified
+OS: Red Hat 6.2
+OS Details: Running on x86`
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: piyush.garyali@honeywell.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: mono-0.28.99.20031124 fails in metadata\threads.c
+
+Please fill in this template when reporting a bug, unless you know what 
+you are doing.
+Description of Problem:
+
+Build fails in metadata\threads.c : mono_get_special_static_data()
+     <snip>
+     guint32 static_type = (offset & 0x80000000);
+     offset &= 0x7fffffff;
+     int idx = (offset >> 24) - 1;
+     ^^^^^^^
+
+which should have been
+
+     guint32 static_type = (offset & 0x80000000);
+     int idx = 0;
+
+     offset &= 0x7fffffff;
+     idx = (offset >> 24) - 1;
+
+
+Steps to reproduce the problem:
+1.  Just build the mono-0.28.99.20031124
+2. 
+3. 
+
+Actual Results:
+
+
+Expected Results:
+
+
+How often does this happen? 
+
+
+Additional Information: