From: Alexis Christoforides Date: Tue, 6 Aug 2019 07:51:20 +0000 (+0300) Subject: Add stub of new function when crash reporting is disabled X-Git-Tag: submit/tizen/20210909.063632~10331^2~5^2~600 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3e0994fabf97e6638137b2bc512c0716df1ec0cb;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Add stub of new function when crash reporting is disabled Commit migrated from https://github.com/mono/mono/commit/8d4c0f3553d91704e2ff1aae6d954716ca3aa5e2 --- diff --git a/src/mono/mono/mini/mini-exceptions.c b/src/mono/mono/mini/mini-exceptions.c index 7b7e018..096aa4c 100644 --- a/src/mono/mono/mini/mini-exceptions.c +++ b/src/mono/mono/mini/mini-exceptions.c @@ -1404,6 +1404,12 @@ mono_crash_reporting_register_native_library (const char *module_path, const cha return; } +static void +mono_crash_reporting_allow_all_native_libraries () +{ + return; +} + #else