summaryrefslogtreecommitdiffstats
path: root/core/load-git.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/load-git.c')
-rw-r--r--core/load-git.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/load-git.c b/core/load-git.c
index 51849501a..ee31e99ac 100644
--- a/core/load-git.c
+++ b/core/load-git.c
@@ -391,6 +391,9 @@ static void parse_dive_cylinder(char *line, struct membuffer *str, void *_dive)
struct dive *dive = _dive;
cylinder_t *cylinder = dive->cylinder + cylinder_index;
+ if (cylinder_index >= MAX_CYLINDERS)
+ return;
+
cylinder->type.description = get_utf8(str);
for (;;) {
char c;
@@ -423,6 +426,9 @@ static void parse_dive_weightsystem(char *line, struct membuffer *str, void *_di
struct dive *dive = _dive;
weightsystem_t *ws = dive->weightsystem + weightsystem_index;
+ if (weightsystem_index >= MAX_WEIGHTSYSTEMS)
+ return;
+
weightsystem_index++;
ws->description = get_utf8(str);
for (;;) {