[PECL-CVS] [pecl-database-pdo_oci] pdo_oci_param_int_fix: Fix typo
[email protected] (Sharad Chandran R) Wed, 7 Jan 2026 06:35:41 +0000
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Sharad Chandran R (sharadraju)
Date: 2026-01-07T12:05:17+05:30
Commit: https://github.com/php/pecl-database-pdo_oci/commit/1b7415b2903fe0c1c0633ad906989f50cbe63807
Raw diff: https://github.com/php/pecl-database-pdo_oci/commit/1b7415b2903fe0c1c0633ad906989f50cbe63807.diff
Fix typo
Changed paths:
M oci_statement.c
Diff:
diff --git a/oci_statement.c b/oci_statement.c
index 816df6c..a56618b 100644
--- a/oci_statement.c
+++ b/oci_statement.c
@@ -424,8 +424,7 @@ static int oci_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *pa
/* set up a NULL value */
if (Z_TYPE_P(parameter) == IS_STRING) {
/* OCI likes to stick non-terminated strings in things */
- *Z_STRVAL_P(param
- eter) = '\0';
+ *Z_STRVAL_P(parameter) = '\0';
}
zval_ptr_dtor_str(parameter);
ZVAL_UNDEF(parameter);