Browse Source

@- Fixed crash in OCIFetchStatement() when trying to read after

@  all data has already been read. (Thies)
PHP-4.0.5
Thies C. Arntzen 27 years ago
parent
commit
c8ffb0ba59
  1. 1
      ext/oci8/oci8.c

1
ext/oci8/oci8.c

@ -1477,6 +1477,7 @@ oci_fetch(oci_statement *statement, ub4 nrows, char *func)
zend_hash_destroy(statement->columns);
efree(statement->columns);
statement->columns = 0;
statement->ncolumns = 0;
}
statement->executed = 0;

Loading…
Cancel
Save