diff options
author | Sterling Hughes <sterling@php.net> | 2001-09-04 06:08:42 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2001-09-04 06:08:42 +0000 |
commit | 31519161131d85d08100ac002fced34c3f6fa027 (patch) | |
tree | b20d1f328024333ad6701fd5b373d1593f84cde3 | |
parent | f12896d23b71cc6fc366427a44e68700206378e8 (diff) | |
download | php-git-31519161131d85d08100ac002fced34c3f6fa027.tar.gz |
pval -> zval
-rw-r--r-- | ext/standard/image.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/image.c b/ext/standard/image.c index 4a23bdff7e..0189e0d98a 100644 --- a/ext/standard/image.c +++ b/ext/standard/image.c @@ -287,7 +287,7 @@ static void php_skip_variable(int socketd, FILE *fp, int issock) /* {{{ php_read_APP */ -static void php_read_APP(int socketd, FILE *fp, int issock, unsigned int marker, pval *info) +static void php_read_APP(int socketd, FILE *fp, int issock, unsigned int marker, zval *info) { unsigned short length; unsigned char *buffer; @@ -401,7 +401,7 @@ static struct gfxinfo *php_handle_jpeg (int socketd, FILE *fp, int issock, pval Get the size of an image as 4-element array */ PHP_FUNCTION(getimagesize) { - pval **arg1, **info = 0; + zval **arg1, **info = NULL; FILE *fp; int issock=0, socketd=0, rsrc_id; int itype = 0; |