--- parser3/src/lib/gd/gif.h 2004/03/01 13:33:11 1.3 +++ parser3/src/lib/gd/gif.h 2017/02/07 22:00:38 1.8 @@ -1,7 +1,7 @@ /** @file Parser: image manipulations decls. - Copyright (c) 2001-2004 ArtLebedev Group (http://www.artlebedev.com) + Copyright (c) 2001-2017 Art. Lebedev Studio (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) based on: gd.h: declarations file for the gifdraw module. @@ -18,7 +18,7 @@ #ifndef GIF_H #define GIF_H -static const char * const IDENT_GIF_H="$Date: 2004/03/01 13:33:11 $"; +#define IDENT_GIF_H "$Id: gif.h,v 1.8 2017/02/07 22:00:38 moko Exp $" #include "pa_config_includes.h" @@ -42,7 +42,7 @@ class gdGrowingBuf: PA_Object { void expand(size_t delta) { size_t new_allocated=fallocated+delta; - fptr=(unsigned char*)realloc(fptr, new_allocated); + fptr=(unsigned char*)pa_realloc(fptr, new_allocated); fallocated=new_allocated; } public: