upstream: s/calloc/xcalloc/ to reduce noise from AI bug detectors

that don't understand context

OpenBSD-Commit-ID: dcef5b1804620f2aed108267bbf5023a81230e14
This commit is contained in:
2026-06-29 19:16:34 +10:00
committed by Damien Miller
parent a9cb2e30d3
commit 0eaeddeefa
+2 -2
View File
@@ -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 <[email protected]>
* Copyright (c) 1995 Tatu Ylonen <[email protected]>, 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) {