2004-01-22 Zoltan Varga <vargaz@freemail.hu>
authorZoltan Varga <vargaz@gmail.com>
Thu, 22 Jan 2004 14:02:45 +0000 (14:02 -0000)
committerZoltan Varga <vargaz@gmail.com>
Thu, 22 Jan 2004 14:02:45 +0000 (14:02 -0000)
* interp.c (mono_main): Remove call to mono_verify_corlib (), since
the verification code is not up-to-date.

svn path=/trunk/mono/; revision=22402

mono/interpreter/ChangeLog
mono/interpreter/interp.c

index 2bd6e56b59d268c71f43921c0082c5086da62d1d..1e5464eda5df66b49b625abac755ff47d48722e4 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
+
+       * interp.c (mono_main): Remove call to mono_verify_corlib (), since
+       the verification code is not up-to-date.
+
 2004-01-19  Bernie Solomon  <bernard@ugsolutions.com>
 
        * interp.c (ves_exec_method_with_context):
index 05e19314e57c9098587cd557406ff98efeeadea0..baf7ac8325dee3d48c45254b98cf032fb28a5fbf 100644 (file)
@@ -4983,7 +4983,6 @@ static void main_thread_handler (gpointer user_data)
 {
        MainThreadArgs *main_args=(MainThreadArgs *)user_data;
        MonoAssembly *assembly;
-       char *error;
 
        if (main_args->enable_debugging)
                mono_debug_init (main_args->domain, MONO_DEBUG_FORMAT_MONO);
@@ -5002,11 +5001,6 @@ static void main_thread_handler (gpointer user_data)
 #ifdef RUN_TEST
        test_load_class (assembly->image);
 #else
-       error = mono_verify_corlib ();
-       if (error) {
-               fprintf (stderr, "Corlib not in sync with this runtime: %s\n", error);
-               exit (1);
-       }
        segv_exception = mono_get_exception_null_reference ();
        segv_exception->message = mono_string_new (main_args->domain, "Segmentation fault");
        signal (SIGSEGV, segv_handler);
@@ -5145,12 +5139,6 @@ mono_main (int argc, char *argv [])
        domain = mono_interp_init(file);
        mono_config_parse (config_file);
 
-       error = mono_verify_corlib ();
-       if (error) {
-               fprintf (stderr, "Corlib not in sync with this runtime: %s\n", error);
-               exit (1);
-       }
-
        error = mono_check_corlib_version ();
        if (error) {
                fprintf (stderr, "Corlib not in sync with this runtime: %s\n", error);