From b8ba39f4cb228ef16677f0db9dd7173f309beee4 Mon Sep 17 00:00:00 2001 From: Yeongjong Lee Date: Thu, 24 Oct 2019 18:21:39 -0300 Subject: [PATCH] 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 --- src/bindings/mono/eina_mono/eina_common.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bindings/mono/eina_mono/eina_common.cs b/src/bindings/mono/eina_mono/eina_common.cs index 7f59d73344..44d6c6cf4a 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; } }