From 9083a8f667cc124a7d3c7dcf40a38a9c273856b3 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Thu, 18 Aug 2011 14:19:00 +0530 Subject: [PATCH] sample-util: Fix off-by-one in error check Patch by jk.illwinter on http://www.pulseaudio.org/ticket/951 --- src/pulsecore/sample-util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.7.4