Comments
Patch
===================================================================
@@ -202,9 +202,7 @@ read_zip_member (JCF *jcf, ZipDirectory *zipd, Zi
{
char *buffer;
z_stream d_stream; /* decompression stream */
- d_stream.zalloc = (alloc_func) 0;
- d_stream.zfree = (free_func) 0;
- d_stream.opaque = (voidpf) 0;
+ memset (&d_stream, 0, sizeof (d_stream));
jcf->buffer = XNEWVEC (unsigned char, zipd->uncompressed_size);
d_stream.next_out = jcf->buffer;
===================================================================
@@ -4512,6 +4512,7 @@ gfc_parse_file (void)
gfc_global_ns_list = next = NULL;
seen_program = 0;
+ errors_before = 0;
/* Exit early for empty files. */
if (gfc_at_eof ())
===================================================================
@@ -3138,8 +3138,8 @@ expand_mult (enum machine_mode mode, rtx op0, rtx
if (INTEGRAL_MODE_P (mode))
{
rtx fake_reg;
- HOST_WIDE_INT coeff;
- bool is_neg;
+ HOST_WIDE_INT coeff = 0;
+ bool is_neg = false;
int mode_bitsize;
if (op1 == CONST0_RTX (mode))