lauromoura pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=b8ba39f4cb228ef16677f0db9dd7173f309beee4

commit b8ba39f4cb228ef16677f0db9dd7173f309beee4
Author: Yeongjong Lee <yj34....@samsung.com>
Date:   Thu Oct 24 18:21:39 2019 -0300

    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;
         }
     }
 

-- 


Reply via email to