Debugging
authorAlexis Christoforides <alexis@thenull.net>
Sat, 31 Aug 2019 00:42:49 +0000 (20:42 -0400)
committerLarry Ewing <lewing@microsoft.com>
Wed, 4 Sep 2019 01:30:30 +0000 (20:30 -0500)
Commit migrated from https://github.com/mono/mono/commit/e50a7360e1c417b8f29d322409ca66c76dc07e39

src/mono/mono/mini/mini-exceptions.c

index 6779d8b..8608aa3 100644 (file)
@@ -1464,11 +1464,11 @@ mono_crash_reporting_allow_all_native_libraries ()
 static gboolean
 check_whitelisted_module (const char *in_name, const char **out_module)
 {
+       g_async_safe_printf ("in_name: %s\n", in_name);
 #ifndef MONO_PRIVATE_CRASHES
                return TRUE;
 #else
        if (allow_all_native_libraries) {
-               g_async_safe_printf ("in_name: %s\n", in_name);
                if (out_module)
                        *out_module = "<external module>";
                return TRUE;