diff options
author | Wez Furlong <wez@php.net> | 2002-03-15 21:03:08 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2002-03-15 21:03:08 +0000 |
commit | 0f65280cb5118d8c1a85db6626f7be365f3d1b26 (patch) | |
tree | 931b09acc5041eb771017e3ebf9ecb9aa833d722 /ext/pdf | |
parent | 3a1ebd4f519facbd7ec769304857aad40e49cf1c (diff) | |
download | php-git-0f65280cb5118d8c1a85db6626f7be365f3d1b26.tar.gz |
New PHP streams...
Diffstat (limited to 'ext/pdf')
-rw-r--r-- | ext/pdf/pdf.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/ext/pdf/pdf.c b/ext/pdf/pdf.c index 5aa6d4394c..f283f0ce87 100644 --- a/ext/pdf/pdf.c +++ b/ext/pdf/pdf.c @@ -36,6 +36,7 @@ #include "ext/standard/head.h" #include "ext/standard/info.h" #include "ext/standard/file.h" +#include "php_streams.h" #if HAVE_LIBGD13 #include "ext/gd/php_gd.h" @@ -464,7 +465,9 @@ PHP_FUNCTION(pdf_set_info_keywords) PHP_FUNCTION(pdf_open) { zval **file; - FILE *fp; + void * what; + int type; + FILE *fp = NULL; PDF *pdf; int argc = ZEND_NUM_ARGS(); @@ -473,7 +476,12 @@ PHP_FUNCTION(pdf_open) if (argc != 1 || zend_get_parameters_ex(1, &file) == FAILURE) { fp = NULL; } else { - ZEND_FETCH_RESOURCE(fp, FILE *, file, -1, "File-Handle", php_file_le_fopen()); + what = zend_fetch_resource(file TSRMLS_CC, -1, "File-Handle", &type, 1, php_file_le_stream()); + ZEND_VERIFY_RESOURCE(what); + + if (!php_stream_cast((php_stream*)what, PHP_STREAM_AS_STDIO, (void*)&fp, 1) == FAILURE) { + RETURN_FALSE; + } /* XXX should do a zend_list_addref for <fp> here! */ } |