From cddbf95c5f0dea1bb1a18271393ad2a020883fe4 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 29 Jun 2014 15:50:29 +0200 Subject: doc/examples/resampling_audio: use av_freep() for saftey also its better in examples to use the safer functions. Signed-off-by: Michael Niedermayer --- doc/examples/resampling_audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/examples/resampling_audio.c b/doc/examples/resampling_audio.c index f743cbe550..8a43b09039 100644 --- a/doc/examples/resampling_audio.c +++ b/doc/examples/resampling_audio.c @@ -168,7 +168,7 @@ int main(int argc, char **argv) dst_nb_samples = av_rescale_rnd(swr_get_delay(swr_ctx, src_rate) + src_nb_samples, dst_rate, src_rate, AV_ROUND_UP); if (dst_nb_samples > max_dst_nb_samples) { - av_free(dst_data[0]); + av_freep(&dst_data[0]); ret = av_samples_alloc(dst_data, &dst_linesize, dst_nb_channels, dst_nb_samples, dst_sample_fmt, 1); if (ret < 0) -- cgit v1.2.3