diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2006-12-14 15:45:56 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-12-14 15:45:56 +0000 |
commit | bc2cdd57d549ab3ba59782e9b395d0cd683fd3ac (patch) | |
tree | 5e031a1ee99d192ff1b063de7bc29dad1f00d6eb /gst | |
parent | 22f148e7b8b9f18779154ad666f715aac2b34d97 (diff) | |
download | gst-plugins-bad-bc2cdd57d549ab3ba59782e9b395d0cd683fd3ac.tar.gz gst-plugins-bad-bc2cdd57d549ab3ba59782e9b395d0cd683fd3ac.tar.bz2 gst-plugins-bad-bc2cdd57d549ab3ba59782e9b395d0cd683fd3ac.zip |
gst/modplug/libmodplug/sndfile.cpp: Fix potential buffer overflow (CVE-2006-4192) (#385788).
Original commit message from CVS:
* gst/modplug/libmodplug/sndfile.cpp:
Fix potential buffer overflow (CVE-2006-4192) (#385788).
Diffstat (limited to 'gst')
-rw-r--r-- | gst/modplug/libmodplug/sndfile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/modplug/libmodplug/sndfile.cpp b/gst/modplug/libmodplug/sndfile.cpp index 5dc14179..23eeac7e 100644 --- a/gst/modplug/libmodplug/sndfile.cpp +++ b/gst/modplug/libmodplug/sndfile.cpp @@ -1081,7 +1081,7 @@ UINT CSoundFile::ReadSample(MODINSTRUMENT *pIns, UINT nFlags, LPCSTR lpMemFile, { UINT len = 0, mem = pIns->nLength+6; - if ((!pIns) || (pIns->nLength < 4) || (!lpMemFile)) return 0; + if ((!pIns) || ((int)pIns->nLength < 4) || (!lpMemFile)) return 0; if (pIns->nLength > MAX_SAMPLE_LENGTH) pIns->nLength = MAX_SAMPLE_LENGTH; pIns->uFlags &= ~(CHN_16BIT|CHN_STEREO); if (nFlags & RSF_16BIT) |