mirror of
https://github.com/php/php-src.git
synced 2026-03-27 17:52:16 +01:00
fix NULL deref
This commit is contained in:
@@ -1973,11 +1973,11 @@ static void exif_error_docref(const char *docref EXIFERR_DC, const image_info_ty
|
||||
char *buf;
|
||||
|
||||
spprintf(&buf, 0, "%s(%d): %s", _file, _line, format);
|
||||
php_verror(docref, ImageInfo->FileName?ImageInfo->FileName:"", type, buf, args);
|
||||
php_verror(docref, ImageInfo && ImageInfo->FileName ? ImageInfo->FileName:"", type, buf, args);
|
||||
efree(buf);
|
||||
}
|
||||
#else
|
||||
php_verror(docref, ImageInfo->FileName?ImageInfo->FileName:"", type, format, args);
|
||||
php_verror(docref, ImageInfo && ImageInfo->FileName ? ImageInfo->FileName:"", type, format, args);
|
||||
#endif
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user