diff options
author | Oliver Chang <ochang@chromium.org> | 2016-02-23 12:41:41 -0800 |
---|---|---|
committer | Oliver Chang <ochang@chromium.org> | 2016-02-23 12:41:41 -0800 |
commit | c145aeb2bf13ac408fc3e8233acca43d4251bbdc (patch) | |
tree | a19a2b6a918446a047826eef7302f8c40ee468d3 /third_party/libopenjpeg20/0011-j2k_update_image_data.patch | |
parent | 2c8fad44315db58f5b3222161dcb699691dca904 (diff) | |
download | pdfium-c145aeb2bf13ac408fc3e8233acca43d4251bbdc.tar.xz |
openjpeg: Prevent bad cast in opj_j2k_update_image_data
R=tsepez@chromium.org
BUG=587227
Review URL: https://codereview.chromium.org/1726843002 .
Diffstat (limited to 'third_party/libopenjpeg20/0011-j2k_update_image_data.patch')
-rw-r--r-- | third_party/libopenjpeg20/0011-j2k_update_image_data.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/third_party/libopenjpeg20/0011-j2k_update_image_data.patch b/third_party/libopenjpeg20/0011-j2k_update_image_data.patch new file mode 100644 index 0000000000..697c48f18b --- /dev/null +++ b/third_party/libopenjpeg20/0011-j2k_update_image_data.patch @@ -0,0 +1,17 @@ +diff --git a/third_party/libopenjpeg20/j2k.c b/third_party/libopenjpeg20/j2k.c +index b20f219..9056feb 100644 +--- a/third_party/libopenjpeg20/j2k.c ++++ b/third_party/libopenjpeg20/j2k.c +@@ -8211,6 +8211,12 @@ static OPJ_BOOL opj_j2k_update_image_data (opj_tcd_t * p_tcd, OPJ_BYTE * p_data, + * */ + assert( l_res->x0 >= 0); + assert( l_res->x1 >= 0); ++ ++ /* Prevent bad casting to unsigned values in the subsequent lines. */ ++ if ( l_res->x0 < 0 || l_res->x1 < 0 || l_res->y0 < 0 || l_res->y1 < 0 ) { ++ return OPJ_FALSE; ++ } ++ + if ( l_x0_dest < (OPJ_UINT32)l_res->x0 ) { + l_start_x_dest = (OPJ_UINT32)l_res->x0 - l_x0_dest; + l_offset_x0_src = 0; |