From 0eaeddeefa4bd9b1241788b27ed2967ab596c759 Mon Sep 17 00:00:00 2001 From: "djm@openbsd.org" Date: Mon, 29 Jun 2026 08:57:06 +0000 Subject: [PATCH] upstream: s/calloc/xcalloc/ to reduce noise from AI bug detectors that don't understand context OpenBSD-Commit-ID: dcef5b1804620f2aed108267bbf5023a81230e14 --- authfd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/authfd.c b/authfd.c index 2b7c561b3..aef809fa6 100644 --- a/authfd.c +++ b/authfd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authfd.c,v 1.143 2026/06/29 02:13:05 djm Exp $ */ +/* $OpenBSD: authfd.c,v 1.144 2026/06/29 08:57:06 djm Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -805,7 +805,7 @@ ssh_agent_query_extensions(int sock, char ***exts) r = SSH_ERR_INVALID_FORMAT; goto out; } - ret = calloc(1, sizeof(*ret)); + ret = xcalloc(1, sizeof(*ret)); while (sshbuf_len(msg)) { ret = xrecallocarray(ret, i + 1, i + 2, sizeof(*ret)); if ((r = sshbuf_get_cstring(msg, ret + i, NULL)) != 0) {