--- embedaddon/php/ext/standard/image.c 2013/07/22 01:32:05 1.1.1.3 +++ embedaddon/php/ext/standard/image.c 2014/06/15 20:15:52 1.1.1.4.2.1.2.1 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: image.c,v 1.1.1.3 2013/07/22 01:32:05 misho Exp $ */ +/* $Id: image.c,v 1.1.1.4.2.1.2.1 2014/06/15 20:15:52 misho Exp $ */ #include "php.h" #include @@ -112,7 +112,7 @@ static struct gfxinfo *php_handle_gif (php_stream * st result->width = (unsigned int)dim[0] | (((unsigned int)dim[1])<<8); result->height = (unsigned int)dim[2] | (((unsigned int)dim[3])<<8); result->bits = dim[4]&0x80 ? ((((unsigned int)dim[4])&0x07) + 1) : 0; - result->channels = 3; /* allways */ + result->channels = 3; /* always */ return result; }