$OpenBSD: patch-IlmImf_ImfZipCompressor_cpp,v 1.1 2009/07/30 11:56:40 jasper Exp $ Security fix for CVE-2009-1720, patch from Debian. Fix integer overflows in compressor constructors. --- IlmImf/ImfZipCompressor.cpp.orig Thu Jul 30 13:48:08 2009 +++ IlmImf/ImfZipCompressor.cpp Thu Jul 30 13:48:36 2009 @@ -43,6 +43,7 @@ #include #include "Iex.h" #include +#include namespace Imf { @@ -58,6 +59,9 @@ ZipCompressor::ZipCompressor _tmpBuffer (0), _outBuffer (0) { + if ((unsigned) maxScanLineSize > INT_MAX / (unsigned) numScanLines) + throw Iex::InputExc ("Error: maxScanLineSize * numScanLines would overflow."); + _tmpBuffer = new char [maxScanLineSize * numScanLines];