cust->includes is:
struct compunit_symtab
{
...
  struct compunit_symtab **includes;
gdb/ChangeLog:
2015-08-03  Pedro Alves  <palves@redhat.com>
	* dwarf2read.c (compute_compunit_symtab_includes): Use size of struct
	compunit_symtab pointer.
       len = VEC_length (compunit_symtab_ptr, result_symtabs);
       cust->includes
        = obstack_alloc (&dwarf2_per_objfile->objfile->objfile_obstack,
-                        (len + 1) * sizeof (struct symtab *));
+                        (len + 1) * sizeof (struct compunit_symtab *));
       for (ix = 0;
           VEC_iterate (compunit_symtab_ptr, result_symtabs, ix,
                        compunit_symtab_iter);