diff options
author | Adam Harvey <aharvey@php.net> | 2010-09-10 03:08:05 +0000 |
---|---|---|
committer | Adam Harvey <aharvey@php.net> | 2010-09-10 03:08:05 +0000 |
commit | 6e06a45f24b91d524b4d3c4b51d3ce408948cff6 (patch) | |
tree | 1ce21c618582bb1bd22c2d427d51ae74bd8e91e4 /ext/standard/file.c | |
parent | 03df7fce829d7296a33148850c392999f26b36be (diff) | |
download | php-git-6e06a45f24b91d524b4d3c4b51d3ce408948cff6.tar.gz |
Fix bug #52802 (Out-of-date comment for
file_get_contents/php_stream_copy_to_mem) by updating the relevant comments.
Diffstat (limited to 'ext/standard/file.c')
-rw-r--r-- | ext/standard/file.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c index e8311a3c65..4f8b291859 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -558,7 +558,6 @@ PHP_FUNCTION(file_get_contents) RETURN_FALSE; } - /* uses mmap if possible */ if ((len = php_stream_copy_to_mem(stream, &contents, maxlen, 0)) > 0) { if (PG(magic_quotes_runtime)) { |