When starting launchpad, getting the vconf value can be failed.
Even if getting the vconf value is failed, the loader process should be
executed that has a onboot timeout feature in the configuration file.
Change-Id: Ie6d22f18aa711a325b445102bff16914f6ed4727
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
while (iter) {
cpc = (candidate_process_context_t *)iter->data;
+ if (!cpc->touched && cpc->on_boot && cpc->on_boot_timeout > 0)
+ __add_on_boot_timer(cpc);
+
if (cpc->state != CANDIDATE_PROCESS_STATE_RUNNING) {
iter = g_list_next(iter);
continue;
continue;
}
- if (!cpc->touched && cpc->on_boot && cpc->on_boot_timeout > 0)
- __add_on_boot_timer(cpc);
-
if (cpc->app_check && !cpc->app_exists) {
iter = g_list_next(iter);
continue;