Commit a0e390e8 authored by Ganesh Ajjanagadde's avatar Ganesh Ajjanagadde

avutil/avstring: add av_warn_unused_result

This does not trigger any warnings, but adds robustness.
Signed-off-by: 's avatarGanesh Ajjanagadde <gajjanagadde@gmail.com>
parent 492dead9
...@@ -339,6 +339,7 @@ enum AVEscapeMode { ...@@ -339,6 +339,7 @@ enum AVEscapeMode {
* @return the length of the allocated string, or a negative error code in case of error * @return the length of the allocated string, or a negative error code in case of error
* @see av_bprint_escape() * @see av_bprint_escape()
*/ */
av_warn_unused_result
int av_escape(char **dst, const char *src, const char *special_chars, int av_escape(char **dst, const char *src, const char *special_chars,
enum AVEscapeMode mode, int flags); enum AVEscapeMode mode, int flags);
...@@ -378,6 +379,7 @@ int av_escape(char **dst, const char *src, const char *special_chars, ...@@ -378,6 +379,7 @@ int av_escape(char **dst, const char *src, const char *special_chars,
* @return >= 0 in case a sequence was successfully read, a negative * @return >= 0 in case a sequence was successfully read, a negative
* value in case of invalid sequence * value in case of invalid sequence
*/ */
av_warn_unused_result
int av_utf8_decode(int32_t *codep, const uint8_t **bufp, const uint8_t *buf_end, int av_utf8_decode(int32_t *codep, const uint8_t **bufp, const uint8_t *buf_end,
unsigned int flags); unsigned int flags);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment