summaryrefslogtreecommitdiff
path: root/main/user_streams.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/user_streams.c')
-rw-r--r--main/user_streams.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/main/user_streams.c b/main/user_streams.c
index 53bb3863cc..fe81d7c10f 100644
--- a/main/user_streams.c
+++ b/main/user_streams.c
@@ -33,6 +33,8 @@ static php_stream *user_wrapper_opener(php_stream_wrapper *wrapper, char *filena
static php_stream_wrapper_ops user_stream_wops = {
user_wrapper_opener,
+ NULL,
+ NULL,
NULL
};
@@ -504,9 +506,10 @@ static char *php_userstreamop_gets(php_stream *stream, char *buf, size_t size TS
php_stream_ops php_stream_userspace_ops = {
php_userstreamop_write, php_userstreamop_read,
php_userstreamop_close, php_userstreamop_flush,
+ "user-space",
php_userstreamop_seek, php_userstreamop_gets,
NULL, /* cast */
- "user-space"
+ NULL /* stat */
};