diff options
author | Markus Fischer <mfischer@php.net> | 2002-03-21 22:35:02 +0000 |
---|---|---|
committer | Markus Fischer <mfischer@php.net> | 2002-03-21 22:35:02 +0000 |
commit | 1d75089d8bf0349ea56b449e6e9c1ac656bdb859 (patch) | |
tree | 1255c6b271aa57c4636221cb33c3fad3f9cb1f5c /ext/pdf | |
parent | 9772468d37096ea7c5b551b78491c5a597ffdd25 (diff) | |
download | php-git-1d75089d8bf0349ea56b449e6e9c1ac656bdb859.tar.gz |
*** empty log message ***
Diffstat (limited to 'ext/pdf')
-rw-r--r-- | ext/pdf/pdf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdf/pdf.c b/ext/pdf/pdf.c index 4b6a888563..fbc772fa63 100644 --- a/ext/pdf/pdf.c +++ b/ext/pdf/pdf.c @@ -479,7 +479,7 @@ PHP_FUNCTION(pdf_open) 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) { + 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! */ |