Date: 06/28/98
- Next message: tsillan <email protected>: "[PHP-DEV] Bug #488: Solid connections not closed -> out of TCP/IP resources"
- Previous message: kara: "[PHP-DEV] CVS update: php3/functions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
From: gfaieta <email protected>
Operating system: Linux/x86 2.0.34
PHP version: 3.0 Final Release
PHP Bug Type: Misbehaving function
Bug description:
in file functions/gd.c, line 436
RETURN_LONG(im->pixels[x->value.lval][y->value.lval]);
should be replaced by
#if HAVE_LIBGD13
RETURN_LONG(im->pixels[y->value.lval][x->value.lval]);
#else
RETURN_LONG(im->pixels[x->value.lval][y->value.lval]);
#endif
to make it compatible with gd 1.3
- Next message: tsillan <email protected>: "[PHP-DEV] Bug #488: Solid connections not closed -> out of TCP/IP resources"
- Previous message: kara: "[PHP-DEV] CVS update: php3/functions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

