diff options
author | Remi Collet <fedora@famillecollet.com> | 2014-03-23 08:53:40 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2014-03-23 08:53:40 +0100 |
commit | 9c33408333b813c15b47a517fc1ee88d2b049243 (patch) | |
tree | 44580e38a23fb93c1ccba06bdb11f99c94c02351 /event-php56.patch | |
parent | 9f5669d76e47f3ab70d41833f93af9e90cccf1bf (diff) |
php-pecl-event: fix for php 5.6
Diffstat (limited to 'event-php56.patch')
-rw-r--r-- | event-php56.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/event-php56.patch b/event-php56.patch new file mode 100644 index 0000000..6dd562d --- /dev/null +++ b/event-php56.patch @@ -0,0 +1,13 @@ +diff --git a/src/util.h b/src/util.h +index 57ef991..8c3b652 100644 +--- a/src/util.h ++++ b/src/util.h +@@ -96,7 +96,7 @@ int _php_event_getsockname(evutil_socket_t fd, zval **ppzaddress, zval **ppzport + + #define PHP_EVENT_REQUIRE_BASE_BY_REF(zbase) \ + do { \ +- if (!Z_ISREF_P((zbase))) { \ ++ if (!Z_ISREF_P((zbase)) || Z_REFCOUNT_P(zbase) < 2) { \ + php_error_docref(NULL TSRMLS_CC, E_ERROR, \ + "EventBase must be passed by reference"); \ + } \ |