From: Andrey Hristov Date: Mon, 10 Mar 2014 10:52:56 +0000 (+0200) Subject: Fix indentation X-Git-Tag: php-5.5.11RC1~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3a76cb2d9570f02fb189699c092ecf1f7491e424;p=php Fix indentation --- diff --git a/ext/mysqlnd/mysqlnd_wireprotocol.c b/ext/mysqlnd/mysqlnd_wireprotocol.c index df9dde592a..dfdba4084e 100644 --- a/ext/mysqlnd/mysqlnd_wireprotocol.c +++ b/ext/mysqlnd/mysqlnd_wireprotocol.c @@ -1741,8 +1741,9 @@ php_mysqlnd_rowp_read_text_protocol(MYSQLND_MEMORY_POOL_CHUNK * row_buffer, zval zval_dtor(*current_field); ZVAL_STRINGL(*current_field, (char *) start, bit_area - start - 1, 0); } - } else - ZVAL_STRINGL(*current_field, (char *)p, len, 0); + } else { + ZVAL_STRINGL(*current_field, (char *)p, len, 0); + } p += len; last_field_was_string = TRUE; }