summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2019-04-02 10:37:40 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2019-04-02 10:39:44 +0200
commit01a4de5c5821f67daeff487ef9b3047ce7b47c4c (patch)
tree6cbe099185c6f1ce0c833cd918717dc21d071136
parent887a7b571407f7a49a5e7cf1e612d21ef83fedb4 (diff)
downloadphp-git-01a4de5c5821f67daeff487ef9b3047ce7b47c4c.tar.gz
Pointer arithmetic on void pointers is illegal
We quick-fix this by casting to char*; it might be more appropriate to use char pointers in the first place.
-rw-r--r--ext/exif/exif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/exif/exif.c b/ext/exif/exif.c
index 408bf03d3e..37b84078f5 100644
--- a/ext/exif/exif.c
+++ b/ext/exif/exif.c
@@ -1740,9 +1740,9 @@ static void exif_iif_add_value(image_info_type *image_info, int section_index, c
} else {
info_value = &info_data->value;
}
- vptr_end = value+value_len;
+ vptr_end = (char *) value + value_len;
for (idex=0,vptr=value; idex<(size_t)length; idex++,vptr=(char *) vptr + php_tiff_bytes_per_format[format]) {
- if (vptr_end - vptr < php_tiff_bytes_per_format[format]) {
+ if ((char *) vptr_end - (char *) vptr < php_tiff_bytes_per_format[format]) {
exif_error_docref("exif_iif_add_value" EXIFERR_CC, image_info, E_WARNING, "Value too short");
break;
}