From: Changgyu Choi Date: Tue, 27 Dec 2022 08:49:41 +0000 (+0900) Subject: Fix static analysis issues X-Git-Tag: accepted/tizen/unified/20221228.170003~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7aa5f8a850f6048dda25ad1bcceee1d2e1864ee5;p=platform%2Fcore%2Fappfw%2Flaunchpad.git Fix static analysis issues Change-Id: If01054da536adbfe4afc5a6fece227b5ba252264 Signed-off-by: Changgyu Choi --- diff --git a/src/launchpad-process-pool/src/launchpad.c b/src/launchpad-process-pool/src/launchpad.c index 3b8bfbf..39c52f9 100644 --- a/src/launchpad-process-pool/src/launchpad.c +++ b/src/launchpad-process-pool/src/launchpad.c @@ -1987,6 +1987,7 @@ static int __dispatch_cmd_add_loader(bundle *kb) slot_info.app_exists = true; slot_info.is_hydra = false; slot_info.app_check = true; + slot_info.on_boot_timeout = 0; cpc = __add_slot(&slot_info); free(loader_name); @@ -2045,6 +2046,7 @@ static int __dispatch_cmd_add_app_defined_loader(bundle *kb) slot_info.app_exists = true; slot_info.is_hydra = false; slot_info.app_check = true; + slot_info.on_boot_timeout = 0; cpc = __add_slot(&slot_info); bundle_free_encoded_rawdata(&extra);