From 36c2ce13445d4326d97237a23ad3e517320360e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Thu, 21 Nov 2024 09:29:19 +0000 Subject: [PATCH] cid#1608081 silence Overflowed array index write MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I40d4207eafe46736a122e07c56f6db94cb517697 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177044 Tested-by: Jenkins Reviewed-by: Caolán McNamara --- desktop/unx/source/start.c | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/unx/source/start.c b/desktop/unx/source/start.c index a8d6b9ff0139..ee4358bc904d 100644 --- a/desktop/unx/source/start.c +++ b/desktop/unx/source/start.c @@ -516,6 +516,7 @@ static ProgressStatus read_percent(ChildInfo const *info, int *pPercent) memmove(pBuffer, pNext, nNotProcessed); /* read data */ + // coverity[ tainted_data_return : FALSE ] version 2023.12.2 ssize_t nThisRead = read(child_info_get_status_fd(info), pBuffer + nNotProcessed, BUFFER_LEN - nNotProcessed);