Commit 1c14c341 authored by Michael Niedermayer's avatar Michael Niedermayer

dec/developer: Add Valgrind / Address Sanitizer to the patch checklist

Reviewed-by: saste
Reviewed-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ef7fdc8c
...@@ -507,6 +507,9 @@ send a reminder by email. Your patch should eventually be dealt with. ...@@ -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 Make sure you check the return values of function and return appropriate
error codes. Especially memory allocation functions like @code{av_malloc()} error codes. Especially memory allocation functions like @code{av_malloc()}
are notoriously left unchecked, which is a serious problem. 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 @end enumerate
@section Patch review process @section Patch review process
......
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