summaryrefslogtreecommitdiff
path: root/ext/standard/file.c
diff options
context:
space:
mode:
authorAdam Harvey <aharvey@php.net>2010-09-10 03:08:05 +0000
committerAdam Harvey <aharvey@php.net>2010-09-10 03:08:05 +0000
commit6e06a45f24b91d524b4d3c4b51d3ce408948cff6 (patch)
tree1ce21c618582bb1bd22c2d427d51ae74bd8e91e4 /ext/standard/file.c
parent03df7fce829d7296a33148850c392999f26b36be (diff)
downloadphp-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.c1
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)) {