[trunk] fix a warning about a recent commit (1104)
This commit is contained in:
parent
d569430cc6
commit
af9ad1580a
3
CHANGES
3
CHANGES
|
@ -5,6 +5,9 @@ What's New for OpenJPEG
|
||||||
! : changed
|
! : changed
|
||||||
+ : added
|
+ : added
|
||||||
|
|
||||||
|
December 1, 2011
|
||||||
|
* [mickael] fix a warning about a recent commit (1104)
|
||||||
|
|
||||||
November 30, 2011
|
November 30, 2011
|
||||||
* [jmalik] implement Large File support in the library :
|
* [jmalik] implement Large File support in the library :
|
||||||
- fix portability layer for windows (need WIN32)
|
- fix portability layer for windows (need WIN32)
|
||||||
|
|
|
@ -6802,7 +6802,7 @@ opj_bool j2k_decode_tile ( opj_j2k_v2_t * p_j2k,
|
||||||
|
|
||||||
l_tcp = &(p_j2k->m_cp.tcps[p_tile_index]);
|
l_tcp = &(p_j2k->m_cp.tcps[p_tile_index]);
|
||||||
if (! l_tcp->m_data) {
|
if (! l_tcp->m_data) {
|
||||||
j2k_tcp_destroy(&l_tcp);
|
j2k_tcp_destroy(l_tcp);
|
||||||
return OPJ_FALSE;
|
return OPJ_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue