We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23db1ce commit 7ad94a0Copy full SHA for 7ad94a0
ext/gd/libgd/gd_gd2.c
@@ -345,14 +345,14 @@ gdImagePtr gdImageCreateFromGd2Ctx (gdIOCtxPtr in)
345
for (x = xlo; x < xhi; x++) {
346
if (im->trueColor) {
347
if (!gdGetInt(&im->tpixels[y][x], in)) {
348
- php_gd_error("gd2: EOF while reading\n");
+ gd_error("gd2: EOF while reading\n");
349
gdImageDestroy(im);
350
return NULL;
351
}
352
} else {
353
int ch;
354
if (!gdGetByte(&ch, in)) {
355
356
357
358
0 commit comments