Skip to content

Commit 0f333fa

Browse files
committedMar 9, 2015
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5: added missing parentheses Fix #67626 Fix #63486 Conflicts: main/streams/userspace.c
2 parents 934d6ed + fa72f1e commit 0f333fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎main/streams/userspace.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ static size_t php_userstreamop_read(php_stream *stream, char *buf, size_t count
701701
zval_ptr_dtor(&zcount);
702702

703703
if (EG(exception)) {
704-
return -1;
704+
return 0;
705705
}
706706

707707
if (call_result == SUCCESS && retval != NULL) {

0 commit comments

Comments
 (0)