From f5764dbd260e0475e90530f4127c88380a6bd1e0 Mon Sep 17 00:00:00 2001 From: Quantum Date: Wed, 29 Jul 2026 18:21:53 -0400 Subject: [PATCH] [common] proctitle: actually update argv to cloned block --- common/src/platform/linux/proctitle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/platform/linux/proctitle.c b/common/src/platform/linux/proctitle.c index 73773f86..b5ad2c69 100644 --- a/common/src/platform/linux/proctitle.c +++ b/common/src/platform/linux/proctitle.c @@ -87,7 +87,7 @@ void lgInitProcessTitle(int argc, char ***pargv) initialized = true; return; } - *pargv = argv; + *pargv = newArgv; char * envEnd = end; int vars = extendContiguous(&envEnd, environ);