mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-02-10 04:27:45 -05:00
don't allow excessively high sample rates
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1449 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
cf925b10e1
commit
4a05bc9bdc
2 changed files with 4 additions and 0 deletions
|
|
@ -80,6 +80,7 @@ int pa_sample_spec_valid(const pa_sample_spec *spec) {
|
|||
assert(spec);
|
||||
|
||||
if (spec->rate <= 0 ||
|
||||
spec->rate > PA_RATE_MAX ||
|
||||
spec->channels <= 0 ||
|
||||
spec->channels > PA_CHANNELS_MAX ||
|
||||
spec->format >= PA_SAMPLE_MAX ||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue