diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-12 16:27:55 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-12 18:23:32 +0100 |
commit | 1c14c3412ea1bac5d02be284103c153599044564 (patch) | |
tree | 6ecef3245986d5e0112a62d2e493d7f9f76e6079 | |
parent | ef7fdc8cff2c5cabd51eb4a47e6fc92f885b7352 (diff) | |
download | ffmpeg-1c14c3412ea1bac5d02be284103c153599044564.tar.gz |
dec/developer: Add Valgrind / Address Sanitizer to the patch checklist
Reviewed-by: saste
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | doc/developer.texi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/developer.texi b/doc/developer.texi index 7e4b12c528..a108da7adc 100644 --- a/doc/developer.texi +++ b/doc/developer.texi @@ -507,6 +507,9 @@ send a reminder by email. Your patch should eventually be dealt with. Make sure you check the return values of function and return appropriate error codes. Especially memory allocation functions like @code{av_malloc()} are notoriously left unchecked, which is a serious problem. +@item + Test your code with valgrind and or Address Sanitizer to ensure it's free + of leaks, out of array accesses, etc. @end enumerate @section Patch review process |