diff options
Diffstat (limited to 'ext/odbc/php_odbc.c')
-rw-r--r-- | ext/odbc/php_odbc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index 8675665444..fefb6d91b2 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -2193,15 +2193,15 @@ PHP_FUNCTION(odbc_result) if (rc == SQL_ERROR) { odbc_sql_error(result->conn_ptr, result->stmt, "SQLGetData"); - zend_string_free(field_str); + zend_string_efree(field_str); RETURN_FALSE; } if (result->values[field_ind].vallen == SQL_NULL_DATA) { - zend_string_free(field_str); + zend_string_efree(field_str); RETURN_NULL(); } else if (rc == SQL_NO_DATA_FOUND) { - zend_string_free(field_str); + zend_string_efree(field_str); RETURN_FALSE; } /* Reduce fieldlen by 1 if we have char data. One day we might |