[Mono-bugs] [Bug 78882][Nor] Changed - [PATCH] Remoting/generics support missing.
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Sun Aug 26 10:40:25 EDT 2007
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 jan.oravec at 6com.sk.
http://bugzilla.ximian.com/show_bug.cgi?id=78882
--- shadow/78882 2007-08-26 10:30:53.000000000 -0400
+++ shadow/78882.tmp.1020 2007-08-26 10:40:25.000000000 -0400
@@ -522,6 +522,24 @@
------- Additional Comments From jan.oravec at 6com.sk 2007-08-26 10:30 -------
I was able to apply remotingservices-execute.diff as well. In fact,
bug-78882-tcp.cs throws exception in native code without this patch.
With both patches applied, bug-78882-tcp.cs throws same
NullReferenceException from my previous post.
+
+------- Additional Comments From jan.oravec at 6com.sk 2007-08-26 10:40 -------
+Hmm, the patch can be applied to 1.2.5p5, but couldn't be applied to
+SVN trunk -- trivial collision appeared in revision 84154:
+
+(bug-78882-tcp.cs)
++ if (method == null)
++ // actually an internal error
++ throw new RemotingException (String.Format ("Cannot resolve
+method {0}:{1}", tt, reqMsg.MethodName));
+
+vs.
+
+(SVN trunk)
++
++ if (method == null)
++ throw new NullReferenceException ();
+
More information about the mono-bugs
mailing list