diff options
author | Stanislav Malyshev <stas@php.net> | 2015-01-11 00:51:05 -0800 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2015-01-11 00:51:05 -0800 |
commit | 2fc178cf448d8e1b95d1314e47eeef610729e0df (patch) | |
tree | 1b1bf82cf02b0d5ed506b8fbe0f7a9f81cf45af2 /ext/exif/exif.c | |
parent | f9ad3086693fce680fbe246e4a45aa92edd2ac35 (diff) | |
download | php-git-2fc178cf448d8e1b95d1314e47eeef610729e0df.tar.gz |
Fix bug #68799: Free called on unitialized pointer
Diffstat (limited to 'ext/exif/exif.c')
-rw-r--r-- | ext/exif/exif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/exif/exif.c b/ext/exif/exif.c index 637ebf9289..7f95ff43ea 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -2702,7 +2702,7 @@ static int exif_process_user_comment(image_info_type *ImageInfo, char **pszInfoP static int exif_process_unicode(image_info_type *ImageInfo, xp_field_type *xp_field, int tag, char *szValuePtr, int ByteCount TSRMLS_DC) { xp_field->tag = tag; - + xp_field->value = NULL; /* XXX this will fail again if encoding_converter returns on error something different than SIZE_MAX */ if (zend_multibyte_encoding_converter( (unsigned char**)&xp_field->value, |