aboutsummaryrefslogtreecommitdiffstats
path: root/executor
diff options
context:
space:
mode:
authorAlexander Potapenko <glider@google.com>2025-07-23 12:50:17 +0200
committerAlexander Potapenko <glider@google.com>2025-07-24 12:46:04 +0000
commit925dbff34225cb5d2677b079aa2db86719ec10fc (patch)
treefff2e2341b15cc16fd018627b8aa2c84b1569481 /executor
parent1b2a3c574905e3e59aa8e2f338bd6fbe2e7898d7 (diff)
executor/common_kvm_amd64_syzos.h: add a missing break
Diffstat (limited to 'executor')
-rw-r--r--executor/common_kvm_amd64_syzos.h1
1 files changed, 1 insertions, 0 deletions
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;