summaryrefslogtreecommitdiff
path: root/main/rfc1867.c
diff options
context:
space:
mode:
authorChristopher Jones <sixd@php.net>2013-08-14 20:47:00 -0700
committerChristopher Jones <sixd@php.net>2013-08-14 20:47:00 -0700
commit3c166c47584c7a7eb8c1ce42ea05a8a5677da028 (patch)
tree7d7e5cf3f27e24c669e6f5272ed4354f2dc0722d /main/rfc1867.c
parent759517651ec5fb09349a3653435dc9ddd0fc53b5 (diff)
parent39612afc72623e89a2bc595c9be4be497568d1be (diff)
downloadphp-git-3c166c47584c7a7eb8c1ce42ea05a8a5677da028.tar.gz
Merge branch 'PHP-5.5'
* PHP-5.5: Reduce (some) compile noise of 'unused variable' and 'may be used uninitialized' warnings. Conflicts: ext/gmp/gmp.c
Diffstat (limited to 'main/rfc1867.c')
-rw-r--r--main/rfc1867.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/rfc1867.c b/main/rfc1867.c
index 498b59725c..4adc25767d 100644
--- a/main/rfc1867.c
+++ b/main/rfc1867.c
@@ -402,7 +402,7 @@ static int find_boundary(multipart_buffer *self, char *boundary TSRMLS_DC)
static int multipart_buffer_headers(multipart_buffer *self, zend_llist *header TSRMLS_DC)
{
char *line;
- mime_header_entry prev_entry, entry;
+ mime_header_entry prev_entry = {0}, entry;
int prev_len, cur_len;
/* didn't find boundary, abort */