From 97f1feda833cd5284102b3a4f58044f7b6b9b52e Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Tue, 3 Oct 1995 18:48:38 +0000 Subject: * som.c (setup_sections): Don't die if a space has no subspaces. --- bfd/som.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bfd/som.c') diff --git a/bfd/som.c b/bfd/som.c index 3aa44c1..dfba504 100644 --- a/bfd/som.c +++ b/bfd/som.c @@ -1802,6 +1802,10 @@ setup_sections (abfd, file_hdr) space.space_number) == false) goto error_return; + /* If the space has no subspaces, then we're done. */ + if (space.subspace_quantity == 0) + continue; + /* Now, read in the first subspace for this space */ if (bfd_seek (abfd, file_hdr->subspace_location + space.subspace_index * sizeof subspace, -- cgit v1.1