From 07071cac7b97b20ba3b5a633171af7ac8ac09d00 Mon Sep 17 00:00:00 2001 From: Pierre-Eric Pelloux-Prayer Date: Thu, 16 Apr 2020 10:24:24 +0200 Subject: [PATCH] gallium/utils: silence strncpy warning MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Marek Olšák Part-of: --- src/gallium/auxiliary/util/u_debug_symbol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/util/u_debug_symbol.c b/src/gallium/auxiliary/util/u_debug_symbol.c index f576a51fe99..334803d008e 100644 --- a/src/gallium/auxiliary/util/u_debug_symbol.c +++ b/src/gallium/auxiliary/util/u_debug_symbol.c @@ -234,7 +234,7 @@ debug_symbol_name_glibc(const void *addr, char* buf, unsigned size) if (!syms) { return FALSE; } - strncpy(buf, syms[0], size); + strncpy(buf, syms[0], size - 1); buf[size - 1] = 0; free(syms); return TRUE; -- 2.30.2