Message ID | 20250109104837.2532259-3-dwmw2@infradead.org (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [PULL,1/2] hw/i386/pc: Fix level interrupt sharing for Xen event channel GSI | expand |
diff --git a/hw/i386/kvm/xen_xenstore.c b/hw/i386/kvm/xen_xenstore.c index 5969105667..17802aa33d 100644 --- a/hw/i386/kvm/xen_xenstore.c +++ b/hw/i386/kvm/xen_xenstore.c @@ -532,6 +532,10 @@ static void xs_read(XenXenstoreState *s, unsigned int req_id, return; } + if (!len) { + return; + } + memcpy(&rsp_data[rsp->len], data->data, len); rsp->len += len; }