summaryrefslogtreecommitdiff
path: root/ext/pdf
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdf')
-rw-r--r--ext/pdf/pdf.c2
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! */