Skip to content

Commit

Permalink
Fix pointing to stack on string && some add tracing
Browse files Browse the repository at this point in the history
Commit migrated from mono/mono@4a52bd6
  • Loading branch information
alexischr authored and lewing committed Sep 4, 2019
1 parent 30cf1b8 commit e0ce026
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mono/mono/mini/mini-exceptions.c
Original file line number Diff line number Diff line change
Expand Up @@ -1468,8 +1468,9 @@ check_whitelisted_module (const char *in_name, const char **out_module)
return TRUE;
#else
if (allow_all_native_libraries) {
g_async_safe_printf ("in_name: %s\n", in_name);
if (out_module)
*out_module = in_name;
*out_module = "<external module>";
return TRUE;
}
if (g_str_has_suffix (in_name, "mono-sgen")) {
Expand Down

0 comments on commit e0ce026

Please sign in to comment.