Removing last unused

This commit is contained in:
Letargie 2018-09-26 13:40:41 +02:00
parent 478f3d57e6
commit ac842c7ecd

View File

@ -793,7 +793,6 @@ static int oci_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, size_t *len
static int oci_stmt_col_meta(pdo_stmt_t *stmt, zend_long colno, zval *return_value) /* {{{ */
{
pdo_oci_stmt *S = (pdo_oci_stmt*)stmt->driver_data;
pdo_oci_column *C;
OCIParam *param = NULL;
ub2 dtype, precis;
sb1 scale;
@ -807,8 +806,6 @@ static int oci_stmt_col_meta(pdo_stmt_t *stmt, zend_long colno, zval *return_val
return FAILURE;
}
C = &S->cols[colno];
array_init(return_value);
array_init(&flags);