diff options
author | Sriram Natarajan <srinatar@php.net> | 2009-09-17 02:45:25 +0000 |
---|---|---|
committer | Sriram Natarajan <srinatar@php.net> | 2009-09-17 02:45:25 +0000 |
commit | fbc335e5d116084f7349e869d414c42e4553b33b (patch) | |
tree | 7471ec2374e9bc1c545a5331719d44006bbc6e4f /main/streams/memory.c | |
parent | fff0a2465634b673084c3688866f251443339068 (diff) | |
download | php-git-fbc335e5d116084f7349e869d414c42e4553b33b.tar.gz |
- Fixed bug #49572 (use of C++ style comments causes build failure)
Diffstat (limited to 'main/streams/memory.c')
-rw-r--r-- | main/streams/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/memory.c b/main/streams/memory.c index a44fba4c24..0643d3efa9 100644 --- a/main/streams/memory.c +++ b/main/streams/memory.c @@ -563,7 +563,7 @@ PHPAPI php_stream *_php_stream_temp_create(int mode, size_t max_memory_usage STR stream = php_stream_alloc_rel(&php_stream_temp_ops, self, 0, mode & TEMP_STREAM_READONLY ? "rb" : "w+b"); stream->flags |= PHP_STREAM_FLAG_NO_BUFFER; self->innerstream = php_stream_memory_create_rel(mode); - php_stream_auto_cleanup(self->innerstream); // do not warn if innerstream is GC'ed before stream + php_stream_auto_cleanup(self->innerstream); /* do not warn if innerstream is GC'ed before stream */ ((php_stream_memory_data*)self->innerstream->abstract)->owner_ptr = &self->innerstream; return stream; |