From 925dbff34225cb5d2677b079aa2db86719ec10fc Mon Sep 17 00:00:00 2001 From: Alexander Potapenko Date: Wed, 23 Jul 2025 12:50:17 +0200 Subject: executor/common_kvm_amd64_syzos.h: add a missing break --- executor/common_kvm_amd64_syzos.h | 1 + 1 file changed, 1 insertion(+) (limited to 'executor') diff --git a/executor/common_kvm_amd64_syzos.h b/executor/common_kvm_amd64_syzos.h index 787b982de..64f50dfcd 100644 --- a/executor/common_kvm_amd64_syzos.h +++ b/executor/common_kvm_amd64_syzos.h @@ -88,6 +88,7 @@ guest_main(uint64 size, uint64 cpu) case SYZOS_API_CPUID: { struct api_call_cpuid* ccmd = (struct api_call_cpuid*)cmd; guest_cpuid(ccmd->eax, ccmd->ecx); + break; } } addr += cmd->size; -- cgit mrf-deployment