58725c
--- binutils.orig/bfd/elf64-s390.c	2017-09-06 09:03:23.142216202 +0100
58725c
+++ binutils-2.27/bfd/elf64-s390.c	2017-09-06 09:11:05.209080947 +0100
58725c
@@ -3895,8 +3895,13 @@ elf_s390_additional_program_headers (bfd
58725c
 {
58725c
   struct elf_s390_link_hash_table *htab;
58725c
 
58725c
-  htab = elf_s390_hash_table (info);
58725c
-  return htab->params->pgste;
58725c
+  if (info)
58725c
+    {
58725c
+      htab = elf_s390_hash_table (info);
58725c
+      if (htab)
58725c
+	return htab->params->pgste;
58725c
+    }
58725c
+  return 0;
58725c
 }
58725c
 
58725c
 
58725c
@@ -3909,6 +3914,9 @@ elf_s390_modify_segment_map (bfd *abfd A
58725c
   struct elf_s390_link_hash_table *htab;
58725c
   struct elf_segment_map *m, *pm = NULL;
58725c
 
58725c
+  if (!abfd || !info)
58725c
+    return TRUE;
58725c
+
58725c
   htab = elf_s390_hash_table (info);
58725c
   if (!htab->params->pgste)
58725c
     return TRUE;
58725c
@@ -3944,8 +3952,12 @@ bfd_elf_s390_set_options (struct bfd_lin
58725c
 {
58725c
   struct elf_s390_link_hash_table *htab;
58725c
 
58725c
-  htab = elf_s390_hash_table (info);
58725c
-  htab->params = params;
58725c
+  if (info)
58725c
+    {
58725c
+      htab = elf_s390_hash_table (info);
58725c
+      if (htab)
58725c
+	htab->params = params;
58725c
+    }
58725c
 
58725c
   return TRUE;
58725c
 }