From: Michael Wallner Date: Sat, 28 Jan 2006 08:07:20 +0000 (+0000) Subject: - not efree but free X-Git-Tag: php-5.1.3RC1~192 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e44b9f08f6d8bf9c69658a2954379a3ba2c17dd6;p=php - not efree but free --- 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;