Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  added missing parentheses
  Fix #67626
  Fix #63486

Conflicts:
	main/streams/userspace.c
This commit is contained in:
Stanislav Malyshev 2015-03-08 23:41:30 -07:00
commit 0f333fa93c

View file

@ -701,7 +701,7 @@ static size_t php_userstreamop_read(php_stream *stream, char *buf, size_t count
zval_ptr_dtor(&zcount); zval_ptr_dtor(&zcount);
if (EG(exception)) { if (EG(exception)) {
return -1; return 0;
} }
if (call_result == SUCCESS && retval != NULL) { if (call_result == SUCCESS && retval != NULL) {