From e492aa22a0b4168d3eafd1a97e33f3c2836b0a6d Mon Sep 17 00:00:00 2001 From: Ilho Kim Date: Fri, 25 Sep 2020 15:59:49 +0900 Subject: [PATCH] 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 --- src/common/step/configuration/step_parse_manifest.cc | 2 -- 1 file changed, 2 deletions(-) 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"); -- 2.7.4