summaryrefslogtreecommitdiff
path: root/doc/developer.texi
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-12 16:27:55 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-01-12 18:23:32 +0100
commit1c14c3412ea1bac5d02be284103c153599044564 (patch)
tree6ecef3245986d5e0112a62d2e493d7f9f76e6079 /doc/developer.texi
parentef7fdc8cff2c5cabd51eb4a47e6fc92f885b7352 (diff)
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>
Diffstat (limited to 'doc/developer.texi')
-rw-r--r--doc/developer.texi3
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