1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 08:42:29 +01:00

use correct free api

This commit is contained in:
Anatol Belski
2015-03-03 18:09:28 +01:00
parent cddde315c7
commit 2f79fd8d43

View File

@@ -292,7 +292,7 @@ PHPAPI int TSendMail(char *host, int *error, char **error_message,
efree(RPath);
}
if (headers) {
efree(headers_lc);
zend_string_free(headers_lc);
}
/* 128 is safe here, the specifier in snprintf isn't longer than that */
if (NULL == (*error_message = ecalloc(1, HOST_NAME_LEN + 128))) {
@@ -310,7 +310,7 @@ PHPAPI int TSendMail(char *host, int *error, char **error_message,
efree(RPath);
}
if (headers) {
efree(headers_lc);
zend_string_free(headers_lc);
}
if (ret != SUCCESS) {
*error = ret;