1995-07-20 03:43:20 -04:00
|
|
|
|
1995-11-28 12:22:13 -05:00
|
|
|
/* pngmem.c - stub functions for memory allocation
|
1995-07-20 03:43:20 -04:00
|
|
|
|
1996-01-10 03:56:49 -05:00
|
|
|
libpng 1.0 beta 2 - version 0.86
|
1995-07-20 03:43:20 -04:00
|
|
|
For conditions of distribution and use, see copyright notice in png.h
|
1996-01-10 03:56:49 -05:00
|
|
|
Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
|
|
|
|
January 10, 1996
|
1995-07-20 03:43:20 -04:00
|
|
|
|
1995-09-26 06:22:39 -04:00
|
|
|
This file provides a location for all memory allocation. Users which
|
1995-12-19 04:22:19 -05:00
|
|
|
need special memory handling are expected to modify the code in this file
|
1995-09-26 06:22:39 -04:00
|
|
|
to meet their needs. See the instructions at each function. */
|
1995-07-20 03:43:20 -04:00
|
|
|
|
|
|
|
#define PNG_INTERNAL
|
|
|
|
#include "png.h"
|
|
|
|
|
|
|
|
/* Allocate memory. For reasonable files, size should never exceed
|
|
|
|
64K. However, zlib may allocate more then 64K if you don't tell
|
|
|
|
it not to. See zconf.h and png.h for more information. zlib does
|
|
|
|
need to allocate exactly 64K, so whatever you call here must
|
|
|
|
have the ability to do that. */
|
|
|
|
|
|
|
|
|
1995-12-19 04:22:19 -05:00
|
|
|
png_voidp
|
|
|
|
png_large_malloc(png_structp png_ptr, png_uint_32 size)
|
1995-07-20 03:43:20 -04:00
|
|
|
{
|
1995-12-19 04:22:19 -05:00
|
|
|
png_voidp ret;
|
1995-09-26 06:22:39 -04:00
|
|
|
if (!png_ptr || !size)
|
1995-12-19 04:22:19 -05:00
|
|
|
return ((voidp)0);
|
1995-07-20 03:43:20 -04:00
|
|
|
|
|
|
|
#ifdef PNG_MAX_MALLOC_64K
|
|
|
|
if (size > (png_uint_32)65536L)
|
1995-12-19 04:22:19 -05:00
|
|
|
png_error(png_ptr, "Cannot Allocate > 64K");
|
1995-07-20 03:43:20 -04:00
|
|
|
#endif
|
|
|
|
|
1995-12-19 04:22:19 -05:00
|
|
|
#if defined(__TURBOC__) && !defined(__FLAT__)
|
|
|
|
ret = farmalloc(size);
|
|
|
|
#else
|
|
|
|
ret = malloc(size);
|
1995-07-20 03:43:20 -04:00
|
|
|
#endif
|
|
|
|
|
1995-09-26 06:22:39 -04:00
|
|
|
if (ret == NULL)
|
1995-07-20 03:43:20 -04:00
|
|
|
{
|
1995-12-19 04:22:19 -05:00
|
|
|
png_error(png_ptr, "Out of Memory");
|
1995-07-20 03:43:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free a pointer allocated by png_large_malloc(). In the default
|
|
|
|
configuration, png_ptr is not used, but is passed in case it
|
|
|
|
is needed. If ptr is NULL, return without taking any action. */
|
|
|
|
void
|
1995-12-19 04:22:19 -05:00
|
|
|
png_large_free(png_structp png_ptr, png_voidp ptr)
|
1995-07-20 03:43:20 -04:00
|
|
|
{
|
|
|
|
if (!png_ptr)
|
1995-12-19 04:22:19 -05:00
|
|
|
return;
|
1995-07-20 03:43:20 -04:00
|
|
|
|
1995-12-19 04:22:19 -05:00
|
|
|
if (ptr != NULL)
|
1995-07-20 03:43:20 -04:00
|
|
|
{
|
1995-12-19 04:22:19 -05:00
|
|
|
#if defined(__TURBOC__) && !defined(__FLAT__)
|
|
|
|
farfree(ptr);
|
1995-07-20 03:43:20 -04:00
|
|
|
#else
|
1995-12-19 04:22:19 -05:00
|
|
|
free(ptr);
|
1995-07-20 03:43:20 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1995-12-19 04:22:19 -05:00
|
|
|
|
1995-07-20 03:43:20 -04:00
|
|
|
/* Allocate memory. This is called for smallish blocks only It
|
1995-12-19 04:22:19 -05:00
|
|
|
should not get anywhere near 64K. On segmented machines, this
|
|
|
|
must come from the local heap (for zlib). */
|
1995-07-20 03:43:20 -04:00
|
|
|
void *
|
1995-12-19 04:22:19 -05:00
|
|
|
png_malloc(png_structp png_ptr, png_uint_32 size)
|
1995-07-20 03:43:20 -04:00
|
|
|
{
|
|
|
|
void *ret;
|
|
|
|
|
1995-09-26 06:22:39 -04:00
|
|
|
if (!png_ptr || !size)
|
1995-12-19 04:22:19 -05:00
|
|
|
{
|
1995-07-20 03:43:20 -04:00
|
|
|
return ((void *)0);
|
1995-12-19 04:22:19 -05:00
|
|
|
}
|
1995-07-20 03:43:20 -04:00
|
|
|
|
|
|
|
#ifdef PNG_MAX_MALLOC_64K
|
|
|
|
if (size > (png_uint_32)65536L)
|
1995-12-19 04:22:19 -05:00
|
|
|
png_error(png_ptr, "Cannot Allocate > 64K");
|
1995-07-20 03:43:20 -04:00
|
|
|
#endif
|
|
|
|
|
1995-12-19 04:22:19 -05:00
|
|
|
|
1995-07-20 03:43:20 -04:00
|
|
|
ret = malloc((png_size_t)size);
|
|
|
|
|
1995-12-19 04:22:19 -05:00
|
|
|
if (!ret)
|
1995-07-20 03:43:20 -04:00
|
|
|
{
|
1995-12-19 04:22:19 -05:00
|
|
|
png_error(png_ptr, "Out of Memory");
|
1995-07-20 03:43:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reallocate memory. This will not get near 64K on a
|
1995-12-19 04:22:19 -05:00
|
|
|
even marginally reasonable file. */
|
1995-07-20 03:43:20 -04:00
|
|
|
void *
|
1995-12-19 04:22:19 -05:00
|
|
|
png_realloc(png_structp png_ptr, void * ptr, png_uint_32 size,
|
|
|
|
png_uint_32 old_size)
|
1995-07-20 03:43:20 -04:00
|
|
|
{
|
1995-12-19 04:22:19 -05:00
|
|
|
void *ret;
|
1995-07-20 03:43:20 -04:00
|
|
|
|
1995-12-19 04:22:19 -05:00
|
|
|
if (!png_ptr || !old_size || !ptr || !size)
|
|
|
|
return ((void *)0);
|
1995-07-20 03:43:20 -04:00
|
|
|
|
|
|
|
#ifdef PNG_MAX_MALLOC_64K
|
1995-12-19 04:22:19 -05:00
|
|
|
if (size > (png_uint_32)65536L)
|
|
|
|
png_error(png_ptr, "Cannot Allocate > 64K");
|
1995-07-20 03:43:20 -04:00
|
|
|
#endif
|
|
|
|
|
1995-12-19 04:22:19 -05:00
|
|
|
ret = realloc(ptr, (png_size_t)size);
|
1995-07-20 03:43:20 -04:00
|
|
|
|
1995-12-19 04:22:19 -05:00
|
|
|
if (!ret)
|
|
|
|
{
|
|
|
|
png_error(png_ptr, "Out of Memory 7");
|
|
|
|
}
|
1995-07-20 03:43:20 -04:00
|
|
|
|
1995-12-19 04:22:19 -05:00
|
|
|
return ret;
|
1995-07-20 03:43:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* free a pointer allocated by png_malloc(). In the default
|
|
|
|
configuration, png_ptr is not used, but is passed incase it
|
|
|
|
is needed. If ptr is NULL, return without taking any action. */
|
|
|
|
void
|
1995-12-19 04:22:19 -05:00
|
|
|
png_free(png_structp png_ptr, void * ptr)
|
1995-07-20 03:43:20 -04:00
|
|
|
{
|
1995-12-19 04:22:19 -05:00
|
|
|
if (!png_ptr)
|
|
|
|
return;
|
1995-07-20 03:43:20 -04:00
|
|
|
|
1995-12-19 04:22:19 -05:00
|
|
|
if (ptr != (void *)0)
|
|
|
|
free(ptr);
|
1995-07-20 03:43:20 -04:00
|
|
|
}
|
|
|
|
|
1995-12-19 04:22:19 -05:00
|
|
|
|