mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
MFH
This commit is contained in:
parent
65f50e7e31
commit
b16f925e37
@ -222,7 +222,7 @@ static sb4 oci_bind_output_cb(dvoid *ctx, OCIBind *bindp, ub4 iter, ub4 index, d
|
||||
zval_dtor(param->parameter);
|
||||
|
||||
Z_STRLEN_P(param->parameter) = param->max_value_len;
|
||||
Z_STRVAL_P(param->parameter) = emalloc(Z_STRLEN_P(param->parameter)+1);
|
||||
Z_STRVAL_P(param->parameter) = ecalloc(1, Z_STRLEN_P(param->parameter)+1);
|
||||
P->used_for_output = 1;
|
||||
|
||||
P->actual_len = Z_STRLEN_P(param->parameter);
|
||||
|
Loading…
Reference in New Issue
Block a user