From e44b9f08f6d8bf9c69658a2954379a3ba2c17dd6 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Sat, 28 Jan 2006 08:07:20 +0000 Subject: [PATCH] - not efree but free --- ext/imap/php_imap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1