diff options
author | Pierre Joye <pajoye@php.net> | 2010-09-16 09:33:42 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2010-09-16 09:33:42 +0000 |
commit | ed58636f004aa9240a8f9cd056bdd0dc7c05490c (patch) | |
tree | b04a57c17f1508a1fd2107a0e143ea9ccaefc075 /UPGRADING.INTERNALS | |
parent | daa90813fb4cee6bb50af334c14f17d795ab8d3b (diff) | |
download | php-git-ed58636f004aa9240a8f9cd056bdd0dc7c05490c.tar.gz |
- use TSRMLS_D/C with php_stream_context_alloc
Diffstat (limited to 'UPGRADING.INTERNALS')
-rw-r--r-- | UPGRADING.INTERNALS | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS index 08e3085194..33b93a7a32 100644 --- a/UPGRADING.INTERNALS +++ b/UPGRADING.INTERNALS @@ -86,3 +86,12 @@ PHPAPI php_stream_context *php_stream_context_alloc(TSRMLS_D) it has to be called using: context = php_stream_context_alloc(TSRMLS_C); + + h. php_stream_context_alloc +php_stream_context_alloc uses now TSRMLS_D: + +PHPAPI php_stream_context *php_stream_context_alloc(TSRMLS_D); + +it has to be called using: + +context = php_stream_context_alloc(TSRMLS_C); |