From fd92d228ff1c72909a0e47aabf0d1fb834a87837 Mon Sep 17 00:00:00 2001 From: "SND\\ussrhero_cp" Date: Thu, 1 Jan 2015 23:13:26 +0000 Subject: [PATCH] [0.3.x] fixed : issue # 13389 ( exception in event callback leads to application hang up ) git-svn-id: https://pykd.svn.codeplex.com/svn@89559 9b283d60-5439-405e-af05-b73fd8c4d996 --- pykd/dbgexcept.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pykd/dbgexcept.cpp b/pykd/dbgexcept.cpp index 2358e90..8f42fe7 100644 --- a/pykd/dbgexcept.cpp +++ b/pykd/dbgexcept.cpp @@ -3,6 +3,7 @@ #include "kdlib/dbgio.h" #include "dbgexcept.h" +#include "pydbgio.h" namespace pykd { @@ -43,7 +44,7 @@ void printException() for ( long i = 0; i < python::len(lst); ++i ) sstr << std::wstring( python::extract(lst[i]) ) << std::endl; - kdlib::eprintln( sstr.str() ); + eprintln( sstr.str() ); }