diff options
author | Martin Storsjö <martin@martin.st> | 2011-06-17 10:31:11 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-06-23 20:17:46 +0300 |
commit | 9abbe8cc136e7fbc69004df3f1de9d54c40d969d (patch) | |
tree | eaa9dcee4f92e3a4cfb0911d4cd1eb6a0ae92813 /libavformat/internal.h | |
parent | 67e9ae14d93aeee019bf65d38192ca5c75dc99dd (diff) | |
download | ffmpeg-9abbe8cc136e7fbc69004df3f1de9d54c40d969d.tar.gz |
Use av_printf_format to check the usage of printf style functions
This helps catching cases where the format string doesn't
match what is passed in, or injection bugs where user data
is passed in as format string.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index 7413b0906a..30faa00e95 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -108,7 +108,7 @@ uint64_t ff_ntp_time(void); */ int ff_url_join(char *str, int size, const char *proto, const char *authorization, const char *hostname, - int port, const char *fmt, ...); + int port, const char *fmt, ...) av_printf_format(7, 8); /** * Append the media-specific SDP fragment for the media stream c |