php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #40950 bzread() reads only 8192 bytes but uses memory for full $length
Submitted: 2007-03-29 16:21 UTC Modified: 2007-04-02 21:14 UTC
From: phpbugs at sebastianmendel dot de Assigned:
Status: Not a bug Package: Bzip2 Related
PHP Version: 5.2.1 OS: Windows
Private report: No CVE-ID: None
 [2007-03-29 16:21 UTC] phpbugs at sebastianmendel dot de
Description:
------------
bzread() does only read 8192 bytes from file handle but consumes memory in the size of $length

Reproduce code:
---------------
<?php
echo memory_get_peak_usage(true);
$read_data = bzread(bzopen('file.bz2'), 10000000)
echo strlen($read_data);
echo memory_get_peak_usage(true);
?>


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-04-02 21:14 UTC] iliaa@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

This is because the memory is pre-allocated before the bz2 file is read.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 06:01:35 2024 UTC