From a89e862e7eec88be16a8901d434b23dd4eaea346 Mon Sep 17 00:00:00 2001 From: Hwankyu Jhun Date: Tue, 4 Feb 2020 10:30:53 +0900 Subject: [PATCH] Fix a bug about getting compnent id Change-Id: I539be671ece605a89965004e8a953d394eafeca1 Signed-off-by: Hwankyu Jhun --- src/rua_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rua_context.c b/src/rua_context.c index 8b80a16..e015d26 100644 --- a/src/rua_context.c +++ b/src/rua_context.c @@ -161,7 +161,7 @@ API int rua_context_get_component_id(rua_context_h context, char **component_id) } if (context->component_id) { - *component_id = context->component_id; + *component_id = strdup(context->component_id); if (*component_id == NULL) { _E("Out of memory"); return RUA_ERROR_OUT_OF_MEMORY; -- 2.7.4