From: jaekuk lee Date: Fri, 8 Feb 2019 06:07:46 +0000 (+0000) Subject: Revert "Resolving memory leak issue in Reply function of AppControl" X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=04c0a2696f09798d6bb1c87da0eed9bf39a3cc0a;p=platform%2Fframework%2Fweb%2Fcrosswalk-tizen.git Revert "Resolving memory leak issue in Reply function of AppControl" This reverts commit ce54ddb0310adc9c889aff3748e1a317b48dc8d7. Change-Id: Ideb8c0e9021c2ee707c348f57880c122fb361598 --- diff --git a/common/app_control.cc b/common/app_control.cc index 1bbf5af..aa14230 100755 --- a/common/app_control.cc +++ b/common/app_control.cc @@ -236,8 +236,8 @@ bool AppControl::AddDataArray(const std::string& key, bool AppControl::Reply(const std::map>& data) { bundle* result; - int temp = appsvc_create_result_bundle(app_control_bundle_,&result); - if (temp != APPSVC_RET_OK) { + if (appsvc_create_result_bundle(app_control_bundle_, + &result) != APPSVC_RET_OK) { LOGGER(ERROR) << "Failed to craete result bundle."; return false; }