This initializer is flawed and only sets .name of array entry 0 to a non-NULL string.
Signed-off-by: Alexandru Isaila <[email protected]> Suggested-by: Jan Beulich <[email protected]> --- xen/arch/x86/hvm/save.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/hvm/save.c b/xen/arch/x86/hvm/save.c index 8984a23..422b96c 100644 --- a/xen/arch/x86/hvm/save.c +++ b/xen/arch/x86/hvm/save.c @@ -89,7 +89,7 @@ static struct { const char *name; size_t size; int kind; -} hvm_sr_handlers[HVM_SAVE_CODE_MAX + 1] = { {NULL, NULL, "<?>"}, }; +} hvm_sr_handlers[HVM_SAVE_CODE_MAX + 1]; /* Init-time function to add entries to that list */ void __init hvm_register_savevm(uint16_t typecode, -- 2.7.4 _______________________________________________ Xen-devel mailing list [email protected] https://lists.xenproject.org/mailman/listinfo/xen-devel
