diff options
author | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-09-07 18:29:03 +0000 |
---|---|---|
committer | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-09-07 18:29:03 +0000 |
commit | ddeba7ce765a30b6699eeb8fc0ed7f3f38397df1 (patch) | |
tree | 323b6ced0e6d679950c66129f598f6cd52af295f /code | |
parent | e3f715468faf651b9508fde74e94a9de538d6f20 (diff) | |
download | ioquake3-aero-ddeba7ce765a30b6699eeb8fc0ed7f3f38397df1.tar.gz ioquake3-aero-ddeba7ce765a30b6699eeb8fc0ed7f3f38397df1.zip |
Fixed buffer overflow in JPG decoder (thanks, Thilo Schulz!)
git-svn-id: svn://svn.icculus.org/quake3/trunk@87 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code')
-rw-r--r-- | code/renderer/tr_image.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/code/renderer/tr_image.c b/code/renderer/tr_image.c index edebb4b..68819ac 100644 --- a/code/renderer/tr_image.c +++ b/code/renderer/tr_image.c @@ -1438,9 +1438,13 @@ static void LoadJPG( const char *filename, unsigned char **pic, int *width, int * In this example, we need to make an output work buffer of the right size. */ /* JSAMPLEs per row in output buffer */ - row_stride = cinfo.output_width * cinfo.output_components; - out = ri.Malloc(cinfo.output_width*cinfo.output_height*cinfo.output_components); + // This row_stride from libjpeg's example code doesn't work, since we + // want to fill in an alpha channel ourselves and jpegs might be 8-bit. + //row_stride = cinfo.output_width * cinfo.output_components; + row_stride = cinfo.output_width * 4; + out = ri.Malloc(row_stride*cinfo.output_height); + *pic = out; *width = cinfo.output_width; |