summaryrefslogtreecommitdiff
path: root/ext/exif
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2016-03-03 23:13:50 +0100
committerNikita Popov <nikic@php.net>2016-03-03 23:20:12 +0100
commit5602f6421372848a6fbb23fbe6bbca47d94dd49a (patch)
tree6ac033d376ecbb817b71895dfa92b96fc351c73e /ext/exif
parent3240dd93b3f8a92ae587df20d7e07d436d0be2a9 (diff)
downloadphp-git-5602f6421372848a6fbb23fbe6bbca47d94dd49a.tar.gz
Eliminate usages of _PP macros
These are either in debug code (fix them), commented out (drop them) or in dead compatibility macros (drop them). One usage was in php_stream_get_from_zval(), which we have not used since at least PHP 5.2 and, judging from the fact that nobody complained about it causing compile errors in PHP 7, nobody else uses it either, so drop it. There are still remaining uses in mysqli embedded and odbc birdstep. These probably need to be dropped outright.
Diffstat (limited to 'ext/exif')
-rw-r--r--ext/exif/exif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/exif/exif.c b/ext/exif/exif.c
index 7e001029c9..0f3c889b21 100644
--- a/ext/exif/exif.c
+++ b/ext/exif/exif.c
@@ -4074,7 +4074,7 @@ PHP_FUNCTION(exif_read_data)
exif_discard_imageinfo(&ImageInfo);
#ifdef EXIF_DEBUG
- php_error_docref1(NULL, Z_STRVAL_PP(p_name), E_NOTICE, "done");
+ php_error_docref1(NULL, p_name, E_NOTICE, "done");
#endif
}
/* }}} */