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/com_dotnet/com_persist.c | |
| parent | 14e77486e06e21bfc29d80327bdb85ff7e1f0bfa (diff) | |
| download | php-git-aa0ed267a29b83099715c48f25bcbf9642bf7bb2.tar.gz | |
- use TSRMLS_*C instead of TSRMLS_FETCH in zend_list_insert
Diffstat (limited to 'ext/com_dotnet/com_persist.c')
| -rwxr-xr-x | ext/com_dotnet/com_persist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/com_dotnet/com_persist.c b/ext/com_dotnet/com_persist.c index cca51ec6a3..3bbf2511d3 100755 --- a/ext/com_dotnet/com_persist.c +++ b/ext/com_dotnet/com_persist.c @@ -277,7 +277,7 @@ PHPAPI IStream *php_com_wrapper_export_stream(php_stream *stream TSRMLS_DC) stm->stream = stream; zend_list_addref(stream->rsrc_id); - stm->id = zend_list_insert(stm, le_istream); + stm->id = zend_list_insert(stm, le_istream TSRMLS_CC); return (IStream*)stm; } |
