diff options
author | Thies C. Arntzen <thies@php.net> | 2002-09-12 09:48:03 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2002-09-12 09:48:03 +0000 |
commit | b905e40e92dce3ad6eaeae3d09f0f003c5accde3 (patch) | |
tree | f4b6c9493358ddac422205e4242ce636d04f9eca /ext/oci8/php_oci8.h | |
parent | 23d3cd79c178da11b5f76b75eb6982fe35554f26 (diff) | |
download | php-git-b905e40e92dce3ad6eaeae3d09f0f003c5accde3.tar.gz |
@- OCIResult() could return garbage if called on empty result-sets. (thies)
# fix #19364
Diffstat (limited to 'ext/oci8/php_oci8.h')
-rw-r--r-- | ext/oci8/php_oci8.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/oci8/php_oci8.h b/ext/oci8/php_oci8.h index 07fdc8e9dc..65d5e1220f 100644 --- a/ext/oci8/php_oci8.h +++ b/ext/oci8/php_oci8.h @@ -119,6 +119,7 @@ typedef struct { HashTable *defines; int ncolumns; int executed; + int has_data; ub2 stmttype; } oci_statement; |