summaryrefslogtreecommitdiffstats
path: root/layout.c
diff options
context:
space:
mode:
Diffstat (limited to 'layout.c')
-rw-r--r--layout.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/layout.c b/layout.c
index 9ad2f5c..92fe852 100644
--- a/layout.c
+++ b/layout.c
@@ -152,6 +152,14 @@ int read_romlayout(char *name)
while (!feof(romlayout)) {
char *tstr1, *tstr2;
+
+ if (romimages >= MAX_ROMLAYOUT) {
+ msg_gerr("Maximum number of ROM images (%i) in layout "
+ "file reached before end of layout file.\n",
+ MAX_ROMLAYOUT);
+ msg_gerr("Ignoring the rest of the layout file.\n");
+ break;
+ }
if (2 != fscanf(romlayout, "%s %s\n", tempstr, rom_entries[romimages].name))
continue;
#if 0
OpenPOWER on IntegriCloud