mono error: 'Missing Resource' when using precompiled code
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
mono (Ubuntu) |
New
|
Undecided
|
Unassigned |
Bug Description
Binary package hint: mono-runtime
There is a bug when running precompiled ASP.NET code on mono 2.4. It has been fixed upstream.
Release: 9.10
Package: mono-runtime
Version: 2.4.2.3+dfsg-2
mono/mod-mono can crash under certain circumstances when running precompiled code.
See: https:/
Fixed with the following simple patch from http://
--- mcs/class/
+++ mcs/class/
@@ -489,7 +489,7 @@
if (writer == null || writer.
byte [] bytes = new byte [size];
Marshal.Copy (ptr, bytes, 0, size);
- writer.Write (Encoding.
+ output.Write (Encoding.
bytes = null;
return;
}