summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSangyoon Jang <s89.jang@samsung.com>2015-03-20 14:59:58 +0900
committerSangyoon Jang <s89.jang@samsung.com>2015-03-20 16:18:59 +0900
commit24d8db7d379b3290d1a37782ea695a4ce03110fb (patch)
treeb58f315711927d12183843de86afd0ea9e751142
parenta0fa658e43635bf703701568eb24bf1003ec1b21 (diff)
downloadbundle-24d8db7d379b3290d1a37782ea695a4ce03110fb.tar.gz
bundle-24d8db7d379b3290d1a37782ea695a4ce03110fb.tar.bz2
bundle-24d8db7d379b3290d1a37782ea695a4ce03110fb.zip
returned string of bundle_get_val() or bundle_get_str_array() must not freed Change-Id: I2a21a3985fb1aa4cdd35fa0f07f28584bc7378de Signed-off-by: Sangyoon Jang <s89.jang@samsung.com>
-rwxr-xr-xinclude/bundle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/bundle.h b/include/bundle.h
index 03b970f..9d22aaa 100755
--- a/include/bundle.h
+++ b/include/bundle.h
@@ -236,7 +236,7 @@ API int bundle_del(bundle *b, const char* key);
/**
* @brief Gets a string array from a given key.
* @since_tizen 2.3
- * @remarks You MUST free or modify the returned string!
+ * @remarks You MUST NOT free or modify the returned string!
* @remarks The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
* @param[in] b The bundle object
* @param[in] key The key
@@ -269,7 +269,7 @@ API const char** bundle_get_str_array(bundle *b, const char *key,int *len);
* @internal
* @brief Gets a value with a given key.
* @since_tizen 2.3
- * @remarks You MUST free or modify the returned string!
+ * @remarks You MUST NOT free or modify the returned string!
* @remarks The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
* @param[in] b The bundle object
* @param[in] key The key