[trunk] WIP: fix bug with windows platform and j2k_to_image

This commit is contained in:
Mickael Savinaud 2011-11-18 08:42:57 +00:00
parent ff3c441023
commit e7e1ec6e84
2 changed files with 5 additions and 1 deletions

View File

@ -5,6 +5,9 @@ What's New for OpenJPEG
! : changed
+ : added
November 18, 2011
* [mickael] WIP: fix bug with windows platform and j2k_to_image
November 17, 2011
* [mickael] WIP: fix bug when decoding an area or a tile with special resolution
+ [mickael] WIP: enhance j2k_to_image with new get_decoded_tile functionality

View File

@ -269,6 +269,7 @@ static int infile_format(const char *fname)
const char *s, *magic_s;
int ext_format, magic_format;
unsigned char buf[12];
unsigned int l_nb_read;
reader = fopen(fname, "rb");
@ -276,7 +277,7 @@ static int infile_format(const char *fname)
return -1;
memset(buf, 0, 12);
unsigned int l_nb_read = fread(buf, 1, 12, reader);
l_nb_read = fread(buf, 1, 12, reader);
fclose(reader);
if (l_nb_read != 12)
return -1;