diff options
author | Pierre Joye <pajoye@php.net> | 2010-09-16 09:13:19 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2010-09-16 09:13:19 +0000 |
commit | aa0ed267a29b83099715c48f25bcbf9642bf7bb2 (patch) | |
tree | d834f5f091ed0a5681caa816a41c5de8f2eb1cb3 /ext/shmop | |
parent | 14e77486e06e21bfc29d80327bdb85ff7e1f0bfa (diff) | |
download | php-git-aa0ed267a29b83099715c48f25bcbf9642bf7bb2.tar.gz |
- use TSRMLS_*C instead of TSRMLS_FETCH in zend_list_insert
Diffstat (limited to 'ext/shmop')
-rw-r--r-- | ext/shmop/shmop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/shmop/shmop.c b/ext/shmop/shmop.c index c6e930c01e..7e057afae7 100644 --- a/ext/shmop/shmop.c +++ b/ext/shmop/shmop.c @@ -226,7 +226,7 @@ PHP_FUNCTION(shmop_open) shmop->size = shm.shm_segsz; - rsid = zend_list_insert(shmop, shm_type); + rsid = zend_list_insert(shmop, shm_type TSRMLS_CC); RETURN_LONG(rsid); err: efree(shmop); |