From: Ilho Kim Date: Fri, 25 Sep 2020 06:59:49 +0000 (+0900) Subject: Remove Unnecessary allocation X-Git-Tag: accepted/tizen/unified/20201029.124936~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e492aa22a0b4168d3eafd1a97e33f3c2836b0a6d;p=platform%2Fcore%2Fappfw%2Fapp-installers.git Remove Unnecessary allocation The value of process_poll will allocated with value 'false' in the next line Change-Id: I03d28429eca7eaff309a8f6205c8bc8352849792 Signed-off-by: Ilho Kim --- diff --git a/src/common/step/configuration/step_parse_manifest.cc b/src/common/step/configuration/step_parse_manifest.cc index 3bcd3df..bfd7389 100644 --- a/src/common/step/configuration/step_parse_manifest.cc +++ b/src/common/step/configuration/step_parse_manifest.cc @@ -529,8 +529,6 @@ bool StepParseManifest::FillServiceApplication(manifest_x* manifest) { service_app->type = strdup(application.app_info.type().c_str()); else service_app->type = strdup("capp"); - service_app->process_pool = - strdup(application.app_info.process_pool().c_str()); service_app->component_type = strdup("svcapp"); service_app->mainapp = strdup(application.app_info.mainapp().c_str()); service_app->nodisplay = strdup("true");