From 1a3c19f5d0cefdd58c092e13b30d496ac72e3733 Mon Sep 17 00:00:00 2001 From: Somin Kim Date: Wed, 12 Apr 2017 15:16:38 +0900 Subject: [PATCH] Modified not to use tuple duplicate() Change-Id: I68e3da1e8d7ae29785a0f7c1ccb1f58d75277ef8 Signed-off-by: Somin Kim --- src/context_history.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context_history.cpp b/src/context_history.cpp index c340c3b..74e17d7 100644 --- a/src/context_history.cpp +++ b/src/context_history.cpp @@ -191,7 +191,7 @@ EXPORT_API int context_history_list_get_current(context_history_list_h list, con ASSERT_ALLOC(*record); (*record)->keys = list->cursor->keys; - (*record)->tuple = ctx::Tuple::duplicate(list->cursor->tuples[position]); + (*record)->tuple = list->cursor->tuples[position]; return CONTEXT_HISTORY_ERROR_NONE; } -- 2.7.4