|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-10-29 17:22 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Feb 19 17:00:01 2026 UTC |
Since GD 2.0.x the struct gdIOCtx in gd_io.h has changed It was: typedef struct gdIOCtx { ... void (*free)(struct gdIOCtx*); } gdIOCtx; It is now: typedef struct gdIOCtx { ... void (*gd_free)(struct gdIOCtx*); } gdIOCtx; The fix is simple: If you want to use GD 2.0.x, the files gd_ctx.c and gd.c in the ext/gd directory should be edited in order to replace all x->free references where x is of type gdIOCtx by x->gd_free. cordially, Arnaud