diff options
author | dv <dv@cvs.openbsd.org> | 2021-04-01 11:05:48 +0000 |
---|---|---|
committer | dv <dv@cvs.openbsd.org> | 2021-04-01 11:05:48 +0000 |
commit | c2acdb04b81c0e9abe1dd57ead9f2b7a282204db (patch) | |
tree | 8f3c1d8c4cc8a82bf6e5a933726628f19b53a9aa /usr.sbin/vmd/vmm.c | |
parent | 0dc90ddf9296a6b0d9c374d9a5b04429d9abaf6d (diff) |
Remove extraneous call of vm_getbyvmid during pause event
The vm is already being assigned by a call in the if-condition.
Diffstat (limited to 'usr.sbin/vmd/vmm.c')
-rw-r--r-- | usr.sbin/vmd/vmm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/vmd/vmm.c b/usr.sbin/vmd/vmm.c index faebf670dee..5238cf6a716 100644 --- a/usr.sbin/vmd/vmm.c +++ b/usr.sbin/vmd/vmm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmm.c,v 1.98 2021/03/29 23:37:01 dv Exp $ */ +/* $OpenBSD: vmm.c,v 1.99 2021/04/01 11:05:47 dv Exp $ */ /* * Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org> @@ -273,7 +273,6 @@ vmm_dispatch_parent(int fd, struct privsep_proc *p, struct imsg *imsg) IMSG_SIZE_CHECK(imsg, &vid); memcpy(&vid, imsg->data, sizeof(vid)); id = vid.vid_id; - vm = vm_getbyvmid(id); if ((vm = vm_getbyvmid(id)) == NULL) { res = ENOENT; cmd = IMSG_VMDOP_PAUSE_VM_RESPONSE; |