From 7cd9cbbb485ed97113e2627530e04abd68816ab7 Mon Sep 17 00:00:00 2001 From: sletz Date: Fri, 30 May 2008 21:08:09 +0000 Subject: [PATCH] Correct JackServer::DeadClient git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2395 0c269be4-1314-0410-8aa9-9f06e86f4224 --- common/JackServer.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/JackServer.cpp b/common/JackServer.cpp index 6ccd86a9..67ec4e56 100644 --- a/common/JackServer.cpp +++ b/common/JackServer.cpp @@ -274,7 +274,9 @@ void JackServer::DeadClient(int refnum) jack_log("JackServer::DeadClient ref = %ld", refnum); if (fEngine->ClientDeactivate(refnum) < 0) { jack_error("JackServer::DeadClient ref = %ld cannot be removed from the graph !!", refnum); - fEngine->ClientExternalClose(refnum); + } + if (fEngine->ClientExternalClose(refnum) < 0) { + jack_error("JackServer::DeadClient ref = %ld cannot be closed", refnum); } }