[Mono-dev] mod_mono and xsp patches

2008-01-20 Thread Joshua Tauberer
Hi, I have two sets of patches: for mod_mono and xsp. The mod_mono patch corrects a few minor things, like proper destruction of the new shm's and checking everything is initialized. The xsp patch corrects a check that a request ID is valid by putting it within a lock, because requests

[Mono-dev] Mono 1.2.6 / gmcs: compilation fails on unsafe array constructor.

2008-01-20 Thread Stephen Apostolopoulos
The following code fails to compile: class Bug { unsafe int*[] data = new int*[16]; } csc /unsafe /target:library unsafe.cs (works) $ gmcs /unsafe /target:library unsafe.cs unsafe.cs(3,33): error CS0214: Pointers and fixed size buffers may only be used in an unsafe context Compilation

[Mono-dev] system.core patch

2008-01-20 Thread olivier dufour
Hi, I have done a small patch for System.core to add all internal constructor in expression inherited class and fill some method for the printer visitor. Hope It will help. cheers, Olivier Index: MemberInitExpression.cs === ---