From: Arun Raghavan Date: Thu, 18 Aug 2011 08:49:00 +0000 (+0530) Subject: sample-util: Fix off-by-one in error check X-Git-Tag: 1.0_branch~406 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9083a8f667cc124a7d3c7dcf40a38a9c273856b3;p=profile%2Fivi%2Fpulseaudio.git sample-util: Fix off-by-one in error check Patch by jk.illwinter on http://www.pulseaudio.org/ticket/951 --- diff --git a/src/pulsecore/sample-util.c b/src/pulsecore/sample-util.c index 16ec4ad..a9e486e 100644 --- a/src/pulsecore/sample-util.c +++ b/src/pulsecore/sample-util.c @@ -748,8 +748,8 @@ void pa_volume_memchunk( return; } - if (spec->format < 0 || spec->format > PA_SAMPLE_MAX) { - pa_log_warn(" Unable to change volume of format %s.", pa_sample_format_to_string(spec->format)); + if (spec->format < 0 || spec->format >= PA_SAMPLE_MAX) { + pa_log_warn("Unable to change volume of format"); return; }