From 1d1efa6c6a4911ac20e1e3c4fdf0ecb2afb6f54a Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Fri, 24 Oct 2014 03:39:34 -0400 Subject: gnu: pulseaudio: Fix CVE-2014-3970 and intermittent test failures. * gnu/packages/patches/pulseaudio-CVE-2014-397.patch: New file. * gnu/packages/patches/pulseaudio-fix-mult-test.patch: New file. * gnu-system.am (dist_patch_DATA): Add them. * gnu/packages/pulseaudio.scm (pulseaudio): Add patches. --- gnu/packages/patches/pulseaudio-fix-mult-test.patch | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 gnu/packages/patches/pulseaudio-fix-mult-test.patch (limited to 'gnu/packages/patches/pulseaudio-fix-mult-test.patch') diff --git a/gnu/packages/patches/pulseaudio-fix-mult-test.patch b/gnu/packages/patches/pulseaudio-fix-mult-test.patch new file mode 100644 index 0000000000..7b249645ad --- /dev/null +++ b/gnu/packages/patches/pulseaudio-fix-mult-test.patch @@ -0,0 +1,16 @@ +Avoid signed overflow during mult-s16-test which intermittently +failed. + +Patch by Mark H Weaver . + +--- pulseaudio-5.0/src/tests/mult-s16-test.c.orig 2014-01-23 13:57:55.000000000 -0500 ++++ pulseaudio-5.0/src/tests/mult-s16-test.c 2014-10-24 03:13:46.464661815 -0400 +@@ -55,7 +55,7 @@ + START_TEST (mult_s16_test) { + int16_t samples[SAMPLES]; + int32_t volumes[SAMPLES]; +- int32_t sum1 = 0, sum2 = 0; ++ uint32_t sum1 = 0, sum2 = 0; + int i; + + pa_random(samples, sizeof(samples)); -- cgit v1.2.3