Fix doxygen: bundle_get_val(), bundle_get_str_array() 67/37167/2 accepted/tizen/common/20150403.125920 accepted/tizen/mobile/20150404.084223 accepted/tizen/tv/20150404.082803 accepted/tizen/wearable/20150404.083328 submit/tizen/20150402.082530
authorSangyoon Jang <s89.jang@samsung.com>
Fri, 20 Mar 2015 05:59:58 +0000 (14:59 +0900)
committerSangyoon Jang <s89.jang@samsung.com>
Fri, 20 Mar 2015 07:18:59 +0000 (16:18 +0900)
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>
include/bundle.h

index 03b970f..9d22aaa 100755 (executable)
@@ -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