From 419a1970a57e08252234496f2b12827e24417a6e Mon Sep 17 00:00:00 2001 From: stefan Date: Mon, 1 Aug 2016 16:32:10 +0000 Subject: [PATCH] Do not pass VM name directly to setproctitle format string. Use a secure idiom instead. ok mlarkin@ --- usr.sbin/vmd/vmm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/vmd/vmm.c b/usr.sbin/vmd/vmm.c index 59403d59ec4..cb0af49f975 100644 --- a/usr.sbin/vmd/vmm.c +++ b/usr.sbin/vmd/vmm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmm.c,v 1.34 2016/07/29 16:36:51 stefan Exp $ */ +/* $OpenBSD: vmm.c,v 1.35 2016/08/01 16:32:10 stefan Exp $ */ /* * Copyright (c) 2015 Mike Larkin @@ -529,7 +529,7 @@ start_vm(struct imsg *imsg, uint32_t *id) return (0); } else { /* Child */ - setproctitle(vcp->vcp_name); + setproctitle("%s", vcp->vcp_name); log_procinit(vcp->vcp_name); create_memory_map(vcp); -- 2.20.1