diff options
author | Felipe Pena <felipe@php.net> | 2009-11-15 20:30:57 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2009-11-15 20:30:57 +0000 |
commit | 5411bb32a8f2da134ce38ec202aeff29d68da20d (patch) | |
tree | 946ce64ec9706e7839bcd5cbcc989e7b916d9217 /main/streams/php_stream_context.h | |
parent | 64f530d182c4b49850fb0b333b6f083acf558a0e (diff) | |
download | php-git-5411bb32a8f2da134ce38ec202aeff29d68da20d.tar.gz |
- Fixed bug #49936 (crash with ftp stream in php_stream_context_get_option())
(patch by Pierrick)
Diffstat (limited to 'main/streams/php_stream_context.h')
-rw-r--r-- | main/streams/php_stream_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/php_stream_context.h b/main/streams/php_stream_context.h index cfe3b56d9b..f1bd70986a 100644 --- a/main/streams/php_stream_context.h +++ b/main/streams/php_stream_context.h @@ -95,7 +95,7 @@ END_EXTERN_C() BEGIN_EXTERN_C() PHPAPI void php_stream_notification_notify(php_stream_context *context, int notifycode, int severity, char *xmsg, int xcode, size_t bytes_sofar, size_t bytes_max, void * ptr TSRMLS_DC); -PHPAPI php_stream_context *php_stream_context_set(php_stream *stream, php_stream_context *context); +PHPAPI php_stream_context *php_stream_context_set(php_stream *stream, php_stream_context *context TSRMLS_DC); END_EXTERN_C() #define php_stream_notify_info(context, code, xmsg, xcode) do { if ((context) && (context)->notifier) { \ |