diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-06-13 09:32:03 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-06-13 09:32:03 +0000 |
commit | 30d9331050f51031ce99df3f538f70aa4bf4d7b8 (patch) | |
tree | 7212ab980998a1c7aa0ccde2b3f45bd54a7fb355 /libavfilter | |
parent | 053a79b2ab4ad0a0ac591f200d0e71b62dd3a0c8 (diff) | |
download | ffmpeg-30d9331050f51031ce99df3f538f70aa4bf4d7b8.tar.gz |
Document what av_get_token() returns in case of allocation failure.
Originally committed as revision 23596 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/parseutils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/parseutils.h b/libavfilter/parseutils.h index 7b78d89ffd..8ad7b8b5e6 100644 --- a/libavfilter/parseutils.h +++ b/libavfilter/parseutils.h @@ -38,7 +38,7 @@ * terminating char * @param term a 0-terminated list of terminating chars * @return the malloced unescaped string, which must be av_freed by - * the user + * the user, NULL in case of allocation failure */ char *av_get_token(const char **buf, const char *term); |