diff options
author | Pierre Joye <pajoye@php.net> | 2009-04-25 11:21:14 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2009-04-25 11:21:14 +0000 |
commit | ccc615c38e742272d14988993507d2ed71f36b75 (patch) | |
tree | cf13d7fdd76f476c6e369ce5016347b3a20b2750 /ext/imap/php_imap.c | |
parent | d2672abf45d7942738a073549842cef3be2a5d81 (diff) | |
download | php-git-ccc615c38e742272d14988993507d2ed71f36b75.tar.gz |
- bad idea to free body
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r-- | ext/imap/php_imap.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 830f44cf3d..dc18c30d24 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -1608,7 +1608,6 @@ PHP_FUNCTION(imap_body) } else { RETVAL_STRINGL(body, body_len, 1); } - free(body); } /* }}} */ |