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 [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=78479 --- shadow/78479 2006-05-22 06:08:50.000000000 -0400 +++ shadow/78479.tmp.14446 2006-05-22 06:08:50.000000000 -0400 @@ -0,0 +1,60 @@ +Bug#: 78479 +Product: Mono: Runtime +Version: unspecified +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Wishlist +Component: misc +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: Bug in Mono.Cecil + +Please fill in this template when reporting a bug, unless you know what +you are doing. +Description of Problem: +I Think there is a bug i the Mono.Cecil library +In the CILWorker.cs source code file (line 211) +The body of the problematic function is + + ORIGINAL CODE ________________________________________________ + public Instruction Emit (OpCode opcode, FieldReference field) + { + Instruction instr = Create (opcode); + Append (instr); + return instr; + } + +I think there a missing argument to the call to Create and so must be +replaced by + + ORIGINAL CODE ________________________________________________ + public Instruction Emit (OpCode opcode, FieldReference field) + { + Instruction instr = Create (opcode,field); + Append (instr); + return instr; + } + + +Steps to reproduce the problem: +1. +2. +3. + +Actual Results: + + +Expected Results: + + +How often does this happen? + + +Additional Information: _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
