You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avutil/mem: document NULL related saftey of av_freep()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -253,6 +253,7 @@ void *av_memdup(const void *p, size_t size);
|
|||||||
* av_realloc() and set the pointer pointing to it to NULL.
|
* av_realloc() and set the pointer pointing to it to NULL.
|
||||||
* @param ptr Pointer to the pointer to the memory block which should
|
* @param ptr Pointer to the pointer to the memory block which should
|
||||||
* be freed.
|
* be freed.
|
||||||
|
* @note passing a pointer to a NULL pointer is safe and leads to no action.
|
||||||
* @see av_free()
|
* @see av_free()
|
||||||
*/
|
*/
|
||||||
void av_freep(void *ptr);
|
void av_freep(void *ptr);
|
||||||
|
Reference in New Issue
Block a user