From: Yeongjong Lee Date: Thu, 24 Oct 2019 21:21:39 +0000 (-0300) Subject: eina_mono: re-throw exception to preserve stack details X-Git-Tag: submit/tizen/20191111.023126~208 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d07b0e70f828167a07faec9fa934e8ffe3207920;p=platform%2Fupstream%2Fefl.git eina_mono: re-throw exception to preserve stack details Summary: fix CA2200 ref T8426 Test Plan: meson setup -Dbindings=mono,cxx -Dmono-beta=true ninja test Reviewers: lauromoura, felipealmeida, brunobelo Reviewed By: lauromoura Subscribers: cedric, #reviewers, #committers Tags: #efl Maniphest Tasks: T8426 Differential Revision: https://phab.enlightenment.org/D10462 --- diff --git a/src/bindings/mono/eina_mono/eina_common.cs b/src/bindings/mono/eina_mono/eina_common.cs index 7f59d73..44d6c6c 100644 --- a/src/bindings/mono/eina_mono/eina_common.cs +++ b/src/bindings/mono/eina_mono/eina_common.cs @@ -205,10 +205,10 @@ public static class StringConversion Marshal.WriteByte(native + strbuf.Length, 0); // write the terminating null return native; } - catch(Exception e) + catch(Exception) { MemoryNative.Free(native); - throw e; + throw; } }