pkgsrc/audio/libsndfile/patches/patch-ad
2009-06-08 09:30:17 +00:00

17 lines
495 B
Text

$NetBSD: patch-ad,v 1.12 2009/06/08 09:30:17 tron Exp $
Upstream fix for DoS vulnerability taken from here:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=530831
--- src/pcm.c.orig 2009-03-22 19:17:14.000000000 +0000
+++ src/pcm.c 2009-06-08 10:03:02.000000000 +0100
@@ -271,7 +271,7 @@
else
psf->datalength = 0 ;
- psf->sf.frames = psf->datalength / psf->blockwidth ;
+ psf->sf.frames = psf->blockwidth > 0 ? psf->datalength / psf->blockwidth : 0 ;
return 0 ;
} /* pcm_init */