From 3e0994fabf97e6638137b2bc512c0716df1ec0cb Mon Sep 17 00:00:00 2001 From: Alexis Christoforides Date: Tue, 6 Aug 2019 10:51:20 +0300 Subject: [PATCH] Add stub of new function when crash reporting is disabled Commit migrated from https://github.com/mono/mono/commit/8d4c0f3553d91704e2ff1aae6d954716ca3aa5e2 --- src/mono/mono/mini/mini-exceptions.c | 6 ++++++ 1 file changed, 6 insertions(+) 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 -- 2.7.4