Skip to content

Commit

Permalink
test_decode_area.c: assign tdy to *ptileh instead of *ptilew (fixes #…
Browse files Browse the repository at this point in the history
…1195)
  • Loading branch information
rouault committed May 26, 2019
1 parent 9b7620e commit f4d6578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_decode_area.c
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ opj_image_t* decode(
*ptilew = pCodeStreamInfo->tdx;
}
if (ptileh) {
*ptilew = pCodeStreamInfo->tdy;
*ptileh = pCodeStreamInfo->tdy;
}
//int numResolutions = pCodeStreamInfo->m_default_tile_info.tccp_info[0].numresolutions;
if (pcblkw) {
Expand Down

0 comments on commit f4d6578

Please sign in to comment.