mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[libpng17] Imported from libpng-1.7.0beta55.tar
This commit is contained in:
38
pngrio.c
38
pngrio.c
@@ -49,18 +49,42 @@ png_read_data(png_structrp png_ptr, png_bytep data, png_size_t length)
|
||||
void PNGCBAPI
|
||||
png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
|
||||
{
|
||||
png_size_t check;
|
||||
png_FILE_p io_ptr;
|
||||
|
||||
if (png_ptr == NULL)
|
||||
return;
|
||||
io_ptr = png_get_io_ptr(png_ptr);
|
||||
|
||||
/* fread() returns 0 on error, so it is OK to store this in a png_size_t
|
||||
if (length == 0)
|
||||
png_error(png_ptr, "Read Error: invalid length requested");
|
||||
|
||||
clearerr(io_ptr);
|
||||
|
||||
if (fileno(io_ptr) == -1)
|
||||
png_error(png_ptr, "Read Error: invalid io_ptr");
|
||||
|
||||
/*
|
||||
* fread() returns 0 on error, so it is OK to store this in a png_size_t
|
||||
* instead of an int, which is what fread() actually returns.
|
||||
*/
|
||||
check = fread(data, 1, length, png_voidcast(png_FILE_p, png_ptr->io_ptr));
|
||||
if ((png_size_t)fread((void *)data, sizeof (png_byte), length,
|
||||
io_ptr) != length)
|
||||
{
|
||||
clearerr(io_ptr);
|
||||
png_error(png_ptr, "Read Error: invalid length returned");
|
||||
}
|
||||
|
||||
if (check != length)
|
||||
png_error(png_ptr, "Read Error");
|
||||
if (ferror(io_ptr))
|
||||
{
|
||||
clearerr(io_ptr);
|
||||
png_error(png_ptr, "Read Error: error returned by fread()");
|
||||
}
|
||||
|
||||
if (feof(io_ptr))
|
||||
{
|
||||
clearerr(io_ptr);
|
||||
png_error(png_ptr, "Read Error: unexpected end of file");
|
||||
}
|
||||
|
||||
clearerr(io_ptr);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user