Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'PHP-5.3' into PHP-5.4
  • Loading branch information
laruence committed Aug 2, 2012
2 parents ce92857 + 433089c commit 242658c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Zend/zend_stream.c
Expand Up @@ -79,7 +79,7 @@ static size_t zend_stream_stdio_fsizer(void *handle TSRMLS_DC) /* {{{ */
static void zend_stream_unmap(zend_stream *stream TSRMLS_DC) { /* {{{ */
#if HAVE_MMAP
if (stream->mmap.map) {
munmap(stream->mmap.map, stream->mmap.len);
munmap(stream->mmap.map, stream->mmap.len + ZEND_MMAP_AHEAD);
} else
#endif
if (stream->mmap.buf) {
Expand Down

0 comments on commit 242658c

Please sign in to comment.