diff options
author | Michael Scheidell <scheidell@FreeBSD.org> | 2012-06-25 11:08:24 +0000 |
---|---|---|
committer | Michael Scheidell <scheidell@FreeBSD.org> | 2012-06-25 11:08:24 +0000 |
commit | 7635814ed649a7ab044aac40eda2f522e2764419 (patch) | |
tree | def6822e86a1c4f31c8d71b4eff1b743688a6714 /devel/php5-msgpack/files/patch-msgpack_unpack.c | |
parent | Add kld to CATEGORIES. (diff) |
- Update to 2012.05.05
- Official version of the code has been integrated into the MessagePack project
PR: ports/169261
Submitted by: Valery Komarov <komarov@valerka.net> (maintainer)
Obtained from: https://github.com/msgpack/msgpack/tree/master/php/
Notes
Notes:
svn path=/head/; revision=299940
Diffstat (limited to 'devel/php5-msgpack/files/patch-msgpack_unpack.c')
-rw-r--r-- | devel/php5-msgpack/files/patch-msgpack_unpack.c | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/devel/php5-msgpack/files/patch-msgpack_unpack.c b/devel/php5-msgpack/files/patch-msgpack_unpack.c deleted file mode 100644 index 614fa8ffb379..000000000000 --- a/devel/php5-msgpack/files/patch-msgpack_unpack.c +++ /dev/null @@ -1,55 +0,0 @@ ---- ./msgpack_unpack.c.orig 2011-11-02 14:17:41.000000000 +0400 -+++ ./msgpack_unpack.c 2012-05-28 15:06:00.765503368 +0400 -@@ -54,7 +54,7 @@ - MSGPACK_UNSERIALIZE_FINISH_ITEM(_unpack, 2); - - inline static void msgpack_var_push( -- php_unserialize_data_t *var_hashx, zval **rval) -+ msgpack_unserialize_data_t *var_hashx, zval **rval) - { - var_entries *var_hash, *prev = NULL; - -@@ -91,7 +91,7 @@ - } - - inline static int msgpack_var_access( -- php_unserialize_data_t *var_hashx, long id, zval ***store) -+ msgpack_unserialize_data_t *var_hashx, long id, zval ***store) - { - var_entries *var_hash = var_hashx->first; - -@@ -118,7 +118,7 @@ - } - - inline static void msgpack_stack_push( -- php_unserialize_data_t *var_hashx, zval **rval, zend_bool save) -+ msgpack_unserialize_data_t *var_hashx, zval **rval, zend_bool save) - { - var_entries *var_hash, *prev = NULL; - -@@ -162,7 +162,7 @@ - } - - inline static void msgpack_stack_pop( -- php_unserialize_data_t *var_hashx, long count) -+ msgpack_unserialize_data_t *var_hashx, long count) - { - long i; - var_entries *var_hash = var_hashx->first_dtor; -@@ -280,14 +280,14 @@ - return ce; - } - --void msgpack_unserialize_var_init(php_unserialize_data_t *var_hashx) -+void msgpack_unserialize_var_init(msgpack_unserialize_data_t *var_hashx) - { - var_hashx->first = 0; - var_hashx->first_dtor = 0; - } - - void msgpack_unserialize_var_destroy( -- php_unserialize_data_t *var_hashx, zend_bool err) -+ msgpack_unserialize_data_t *var_hashx, zend_bool err) - { - void *next; - long i; |