1
0
mirror of https://github.com/php/php-src.git synced 2026-04-10 17:43:13 +02:00

MFH: fix win32 compile

This commit is contained in:
Rob Richards
2008-01-25 15:54:58 +00:00
parent 90f168deae
commit b65adbb4fb

View File

@@ -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) {