memory leak when including a directory
| Bug #35740 | memory leak when including a directory | ||||
|---|---|---|---|---|---|
| Submitted: | 2005-12-20 09:30 UTC | Modified: | 2005-12-20 10:48 UTC | ||
| From: | david at tulloh dot id dot au | Assigned: | tony2001 (profile) | ||
| Status: | Closed | Package: | Filesystem function related | ||
| PHP Version: | 5.1.1 | OS: | Debian Linux | ||
| Private report: | No | CVE-ID: | None | ||
[2005-12-20 09:30 UTC] david at tulloh dot id dot au
Description:
------------
Including a directory causes a memory leak. While it's obviously bad and should fail, the memory leak was a surprise.
Reproduce code:
---------------
> php -r '@include("./");'
php-5.1.1/main/fopen_wrappers.c(539) : Freeing 0x08373750 (49 bytes), script=-
=== Total 1 memory leaks detected ===
> php -r '@include("/");'
php-5.1.1/main/fopen_wrappers.c(539) : Freeing 0x083735E8 (2 bytes), script=-
=== Total 1 memory leaks detected ===
> php -r '@include(".");'
php-5.1.1/main/fopen_wrappers.c(539) : Freeing 0x08373790 (49 bytes), script=-
Last leak repeated 1 time
=== Total 2 memory leaks detected ===
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2005-12-20 10:48 UTC] tony2001@php.net