From: claudio Date: Thu, 29 Jun 2023 14:09:42 +0000 (+0000) Subject: In rrdp_session_save() stop the loop over deltas once MAX_RRDP_DELTAS X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=019c44ef11bb3d2003dbe29c2b3d2e8ebe881a68;p=openbsd In rrdp_session_save() stop the loop over deltas once MAX_RRDP_DELTAS have been processed. With and OK tb@ --- diff --git a/usr.sbin/rpki-client/repo.c b/usr.sbin/rpki-client/repo.c index ecaefc400e5..e3d684fe132 100644 --- a/usr.sbin/rpki-client/repo.c +++ b/usr.sbin/rpki-client/repo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: repo.c,v 1.48 2023/06/23 11:36:24 claudio Exp $ */ +/* $OpenBSD: repo.c,v 1.49 2023/06/29 14:09:42 claudio Exp $ */ /* * Copyright (c) 2021 Claudio Jeker * Copyright (c) 2019 Kristaps Dzonsons @@ -727,7 +727,7 @@ rrdp_session_save(unsigned int id, struct rrdp_session *state) if (fprintf(f, "-\n") < 0) goto fail; } - for (i = 0; state->deltas[i] != NULL; i++) { + for (i = 0; i < MAX_RRDP_DELTAS && state->deltas[i] != NULL; i++) { if (fprintf(f, "%s\n", state->deltas[i]) < 0) goto fail; }