mirror of
https://github.com/php/php-src.git
synced 2025-08-20 01:14:28 +02:00
MFB: Fixed bug #49193 (gdJpegGetVersionString() inside gd_compact identifies wrong type in declaration)
This commit is contained in:
parent
d80dac8aae
commit
d24d6a449e
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ int gdJpegGetVersionInt()
|
||||||
return JPEG_LIB_VERSION;
|
return JPEG_LIB_VERSION;
|
||||||
}
|
}
|
||||||
|
|
||||||
int gdJpegGetVersionString()
|
const char * gdJpegGetVersionString()
|
||||||
{
|
{
|
||||||
switch(JPEG_LIB_VERSION) {
|
switch(JPEG_LIB_VERSION) {
|
||||||
case 62:
|
case 62:
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
|
|
||||||
const char * gdPngGetVersionString();
|
const char * gdPngGetVersionString();
|
||||||
int gdJpegGetVersionString();
|
const char * gdJpegGetVersionString();
|
||||||
int gdJpegGetVersionInt();
|
int gdJpegGetVersionInt();
|
||||||
int overflow2(int a, int b);
|
int overflow2(int a, int b);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue