summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXinchen Hui <laruence@php.net>2015-05-16 00:19:43 +0800
committerXinchen Hui <laruence@php.net>2015-05-16 00:19:43 +0800
commit249d4c7fdb00d583d4e2b41381df94b62bb16f05 (patch)
treecc45adea15353ee5d578b3538a9b01dc59ac6319
parent7cead987bd5179506225afa696abb43d722d1253 (diff)
downloadphp-git-249d4c7fdb00d583d4e2b41381df94b62bb16f05.tar.gz
code standard
-rw-r--r--main/rfc1867.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/main/rfc1867.c b/main/rfc1867.c
index 3c1bfa6b4f..30457f3bca 100644
--- a/main/rfc1867.c
+++ b/main/rfc1867.c
@@ -420,8 +420,7 @@ static int multipart_buffer_headers(multipart_buffer *self, zend_llist *header)
/* get lines of text, or CRLF_CRLF */
- while( (line = get_line(self)) && line[0] != '\0' )
- {
+ while ((line = get_line(self)) && line[0] != '\0') {
/* add header to table */
char *value = NULL;
@@ -435,7 +434,7 @@ static int multipart_buffer_headers(multipart_buffer *self, zend_llist *header)
}
if (value) {
- if(buf_value.c && key) {
+ if (buf_value.c && key) {
/* new entry, add the old one to the list */
smart_string_0(&buf_value);
entry.key = key;
@@ -446,7 +445,7 @@ static int multipart_buffer_headers(multipart_buffer *self, zend_llist *header)
}
*value = '\0';
- do { value++; } while(isspace(*value));
+ do { value++; } while (isspace(*value));
key = estrdup(line);
smart_string_appends(&buf_value, value);
@@ -457,7 +456,7 @@ static int multipart_buffer_headers(multipart_buffer *self, zend_llist *header)
}
}
- if(buf_value.c && key) {
+ if (buf_value.c && key) {
/* add the last one to the list */
smart_string_0(&buf_value);
entry.key = key;