mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 18:49:58 +00:00
lavr: check that current_buffer is not NULL before using it
Fixes a segfault during resampling when compiled with -DDEBUG. Fixes all fate-lavr-resample tests with -DDEBUG. CC:libav-stable@libav.org
This commit is contained in:
parent
834259528b
commit
211ca69b13
@ -438,7 +438,8 @@ int attribute_align_arg avresample_convert(AVAudioResampleContext *avr,
|
|||||||
resample_out = &output_buffer;
|
resample_out = &output_buffer;
|
||||||
else
|
else
|
||||||
resample_out = avr->resample_out_buffer;
|
resample_out = avr->resample_out_buffer;
|
||||||
av_dlog(avr, "[resample] %s to %s\n", current_buffer->name,
|
av_dlog(avr, "[resample] %s to %s\n",
|
||||||
|
current_buffer ? current_buffer->name : "null",
|
||||||
resample_out->name);
|
resample_out->name);
|
||||||
ret = ff_audio_resample(avr->resample, resample_out,
|
ret = ff_audio_resample(avr->resample, resample_out,
|
||||||
current_buffer);
|
current_buffer);
|
||||||
|
Loading…
Reference in New Issue
Block a user