Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfrijters <jfrijters>2014-07-10 12:18:10 +0400
committerjfrijters <jfrijters>2014-07-10 12:18:10 +0400
commitcfe528407f7ba7e47a83e696417c8fe91adf3b14 (patch)
tree7399c4b4ab399e108c5dbc1ab897e1452f6786e1
parentd9b66807dc232f22b498e8c5949b8d4ab7f59042 (diff)
Fixed CLASSGC build break.
-rw-r--r--runtime/ClassLoaderWrapper.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/ClassLoaderWrapper.cs b/runtime/ClassLoaderWrapper.cs
index 6a16ce0b..fcda2647 100644
--- a/runtime/ClassLoaderWrapper.cs
+++ b/runtime/ClassLoaderWrapper.cs
@@ -1084,7 +1084,7 @@ namespace IKVM.Internal
{
Assembly asm = type.Assembly;
#if CLASSGC
- ClassLoaderWrapper loader;
+ ClassLoaderWrapper loader = null;
if(dynamicAssemblies != null && dynamicAssemblies.TryGetValue(asm, out loader))
{
lock(loader.typeToTypeWrapper)