From ae78d52c7e3d3217c0535b66c1242145cccec9ab Mon Sep 17 00:00:00 2001 From: Peter Rekdal Sunde Date: Wed, 8 Jul 2015 20:17:47 +0200 Subject: [PATCH] Bugfix: Stack overflow. --- src/bindings/csharp/openalpr-net/openalpr-net.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/csharp/openalpr-net/openalpr-net.cpp b/src/bindings/csharp/openalpr-net/openalpr-net.cpp index 94c3421..2849380 100644 --- a/src/bindings/csharp/openalpr-net/openalpr-net.cpp +++ b/src/bindings/csharp/openalpr-net/openalpr-net.cpp @@ -888,7 +888,7 @@ namespace openalprnet { void SetDebug(bool value) { - this->SetDebug(value); + this->m_config->setDebug(value); } String^ GetKeypointsRuntimeDir()