From 7db0bb27306e746b380eb1275c72ff243b84ad8f Mon Sep 17 00:00:00 2001 From: Wonkyu Kwon Date: Mon, 27 May 2013 17:35:16 +0900 Subject: [PATCH] Fix a crash problem Change-Id: I791fdf45df39b5cfc31386b0d7abc1266c7ee998 --- client/ClientDispatcher.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/ClientDispatcher.cpp b/client/ClientDispatcher.cpp index 4a2e0dc..c2267c6 100644 --- a/client/ClientDispatcher.cpp +++ b/client/ClientDispatcher.cpp @@ -108,7 +108,7 @@ namespace smartcard_service_api else { /* Synchronous call */ - SEService::dispatcherCallback(msg); + SEService::dispatcherCallback(tempMsg); } } break; @@ -126,7 +126,7 @@ namespace smartcard_service_api else { /* Synchronous call */ - Reader::dispatcherCallback(msg); + Reader::dispatcherCallback(tempMsg); } } break; @@ -147,7 +147,7 @@ namespace smartcard_service_api else { /* Synchronous call */ - Session::dispatcherCallback(msg); + Session::dispatcherCallback(tempMsg); } } break; @@ -166,7 +166,7 @@ namespace smartcard_service_api else { /* Synchronous call */ - ClientChannel::dispatcherCallback(msg); + ClientChannel::dispatcherCallback(tempMsg); } } break; -- 2.7.4