Revert "Resolving memory leak issue in Reply function of AppControl" 77/199277/1
authorjaekuk lee <juku1999@samsung.com>
Fri, 8 Feb 2019 06:07:46 +0000 (06:07 +0000)
committerjaekuk lee <juku1999@samsung.com>
Fri, 8 Feb 2019 06:07:46 +0000 (06:07 +0000)
This reverts commit ce54ddb0310adc9c889aff3748e1a317b48dc8d7.

Change-Id: Ideb8c0e9021c2ee707c348f57880c122fb361598

common/app_control.cc

index 1bbf5af..aa14230 100755 (executable)
@@ -236,8 +236,8 @@ bool AppControl::AddDataArray(const std::string& key,
 bool AppControl::Reply(const std::map<std::string,
                                       std::vector<std::string>>& 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;
   }