From 63c537b233c1e7148b80c0bfc4e667b95117dc5a Mon Sep 17 00:00:00 2001 From: Araq Date: Mon, 29 Jun 2015 02:48:08 +0200 Subject: [PATCH] fixes #3014 --- lib/system/excpt.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/system/excpt.nim b/lib/system/excpt.nim index f157f428c4..5d2faa2d6d 100644 --- a/lib/system/excpt.nim +++ b/lib/system/excpt.nim @@ -63,7 +63,7 @@ proc pushCurrentException(e: ref Exception) {.compilerRtl, inl.} = currException = e proc popCurrentException {.compilerRtl, inl.} = - currException = currException.parent + currException = nil # currException.parent # some platforms have native support for stack traces: const