mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
MFH: fix win32 compile
This commit is contained in:
parent
90f168deae
commit
b65adbb4fb
1 changed files with 2 additions and 2 deletions
|
@ -766,9 +766,9 @@ mysqlnd_fetch_row_buffered_c(MYSQLND_RES *result TSRMLS_DC)
|
|||
if (result->data->data_cursor &&
|
||||
(result->data->data_cursor - result->data->data) < result->data->row_count)
|
||||
{
|
||||
ret = mnd_malloc(result->field_count * sizeof(char *));
|
||||
|
||||
zval **current_row = *result->data->data_cursor;
|
||||
|
||||
ret = mnd_malloc(result->field_count * sizeof(char *));
|
||||
for (i = 0; i < result->field_count; i++) {
|
||||
zval *data = current_row[i];
|
||||
if (Z_TYPE_P(data) != IS_NULL) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue