diff options
author | Michael Wallner <mike@php.net> | 2006-01-28 08:07:20 +0000 |
---|---|---|
committer | Michael Wallner <mike@php.net> | 2006-01-28 08:07:20 +0000 |
commit | e44b9f08f6d8bf9c69658a2954379a3ba2c17dd6 (patch) | |
tree | 08c1e9a305090d6777377030a46af0c684acc6bf /ext/imap | |
parent | 80cc4867e36432ff9ddce5f4d3a57447c9abfda5 (diff) | |
download | php-git-e44b9f08f6d8bf9c69658a2954379a3ba2c17dd6.tar.gz |
- not efree but free
Diffstat (limited to 'ext/imap')
-rw-r--r-- | ext/imap/php_imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 9653ebb732..67be96b8e3 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -4246,7 +4246,7 @@ static char *php_mail_gets(readfn_t f, void *stream, unsigned long size, GETS_DA buf[size] = '\0'; } else { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to read from socket"); - efree(buf); + free(buf); buf = NULL; } return buf; |