From: Stanislav Malyshev Date: Mon, 16 Dec 2019 09:10:42 +0000 (-0800) Subject: Fix build - no model field anymore X-Git-Tag: php-7.3.14RC1~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b74a300edf9ee1cd33edbafd9f3aec37ff4bf004;p=php Fix build - no model field anymore --- diff --git a/ext/exif/exif.c b/ext/exif/exif.c index 362e63d9a3..afc299846e 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -3138,8 +3138,6 @@ static int exif_process_IFD_in_MAKERNOTE(image_info_type *ImageInfo, char * valu /*exif_error_docref(NULL EXIFERR_CC, ImageInfo, E_NOTICE, "check (%s)", maker_note->make?maker_note->make:"");*/ if (maker_note->make && (!ImageInfo->make || strcmp(maker_note->make, ImageInfo->make))) continue; - if (maker_note->model && (!ImageInfo->model || strcmp(maker_note->model, ImageInfo->model))) - continue; if (maker_note->id_string && value_len >= maker_note->id_string_len && strncmp(maker_note->id_string, value_ptr, maker_note->id_string_len)) continue;