Skip to content

Commit

Permalink
Make default value more explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
kocsismate committed Aug 31, 2021
1 parent 5256798 commit 70f516d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/oci8/oci8_interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -1274,7 +1274,7 @@ PHP_FUNCTION(oci_fetch_all)
zval **outarrs;
ub4 nrows = 1;
int i;
zend_long rows = 0, flags = PHP_OCI_FETCHSTATEMENT_BY_COLUMN, skip = 0, maxrows = -1;
zend_long rows = 0, flags = PHP_OCI_FETCHSTATEMENT_BY_COLUMN | PHP_OCI_ASSOC, skip = 0, maxrows = -1;

ZEND_PARSE_PARAMETERS_START(2, 5)
Z_PARAM_RESOURCE(z_statement)
Expand Down

0 comments on commit 70f516d

Please sign in to comment.