Changeset 8060b3457e20e6223b70927693f8da8f547b8fef
- Timestamp:
- 04/17/08 20:19:56
(1 month ago)
- Author:
- Jean-Baptiste Kempf <jb@videolan.org>
- git-committer:
- Jean-Baptiste Kempf <jb@videolan.org> 1208456396 -0700
- git-parent:
[0f79e202ee068af55a689d2aa5b4f37988080063]
- git-author:
- Jean-Baptiste Kempf <jb@videolan.org> 1208456375 -0700
- Message:
Fix for [oCERT-2008-004] multiple speex implementations insufficient boundary checks. Patch by Eren Türkay
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| raba5ca0 |
r8060b34 |
|
| 79 | 79 | Enrico Gueli <e_gueli at yahoo.it> - Brightness threshold in adjust video filter |
|---|
| 80 | 80 | Enrique Osuna <enrique.osuna at gmail.com> - Various bug fixes in libvlc. Major Mac OS X Framework improvements. |
|---|
| | 81 | Eren Türkay <turkay dot eren \a/ gmail point com> - Speex boundary checks and security fix |
|---|
| 81 | 82 | Espen Skoglund <esk at ira.uka.de> - FreeBSD autoconf and Makefile patches |
|---|
| 82 | 83 | Ethan C. Baldridge <BaldridgeE at cadmus.com> - directory browsing code |
|---|
| r449fd28 |
r8060b34 |
|
| 358 | 358 | return VLC_EGENERIC; |
|---|
| 359 | 359 | } |
|---|
| 360 | | if( p_header->mode >= SPEEX_NB_MODES ) |
|---|
| | 360 | if( p_header->mode >= SPEEX_NB_MODES || p_header->mode < 0 ) |
|---|
| 361 | 361 | { |
|---|
| 362 | 362 | msg_Err( p_dec, "mode number %d does not (yet/any longer) exist in " |
|---|