summaryrefslogtreecommitdiff
path: root/ext/gd/libgd/gd_io_file.c
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2002-10-29 23:08:01 +0000
committerRasmus Lerdorf <rasmus@php.net>2002-10-29 23:08:01 +0000
commita24534a1ed1a38024fba0c5fe5374effb7432d0b (patch)
treed60c061c3cec25d29c4d99026eee958b75aa4a34 /ext/gd/libgd/gd_io_file.c
parent8c95cefac6db0ec18002e9c46b55895c584c8c07 (diff)
downloadphp-git-a24534a1ed1a38024fba0c5fe5374effb7432d0b.tar.gz
Update bundled gd library with relevant changes from gd-2.0.4
I still need to add a configure check for the gdIOCtx struct changes so building against older external gd libs will work again.
Diffstat (limited to 'ext/gd/libgd/gd_io_file.c')
-rw-r--r--ext/gd/libgd/gd_io_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/libgd/gd_io_file.c b/ext/gd/libgd/gd_io_file.c
index d0efd1af79..713646120e 100644
--- a/ext/gd/libgd/gd_io_file.c
+++ b/ext/gd/libgd/gd_io_file.c
@@ -71,7 +71,7 @@ gdNewFileCtx (FILE * f)
ctx->ctx.tell = fileTell;
ctx->ctx.seek = fileSeek;
- ctx->ctx.free = gdFreeFileCtx;
+ ctx->ctx.gd_free = gdFreeFileCtx;
return (gdIOCtx *) ctx;
}