From 0348c077c814d1edbf8dcea193a352e815398f0b Mon Sep 17 00:00:00 2001 From: Semun Lee Date: Tue, 29 Mar 2016 22:30:49 +0900 Subject: [PATCH] Fix to send AUL_K_SEQ_NUM normally - When AUL_K_ORG_CALLER_PID is set, we should send AUL_K_SEQ_NUM normally. It is used in the receiver side Change-Id: Ieca81e562902fa72f2e80a6479b776defc2d52a8 Signed-off-by: Semun Lee --- src/launch_with_result.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/launch_with_result.c b/src/launch_with_result.c index 05cb482..3a5a547 100644 --- a/src/launch_with_result.c +++ b/src/launch_with_result.c @@ -439,6 +439,7 @@ API int aul_create_result_bundle(bundle *inb, bundle **outb) } bundle_add(*outb, AUL_K_CALLER_PID, pid_str); +end: num_str = bundle_get_val(inb, AUL_K_SEQ_NUM); if (num_str == NULL) { _E("original msg does not have seq num"); @@ -448,7 +449,6 @@ API int aul_create_result_bundle(bundle *inb, bundle **outb) } bundle_add(*outb, AUL_K_SEQ_NUM, num_str); -end: return AUL_R_OK; } -- 2.7.4