From acbac4a1dc974a3915760b4551336544c4360241 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Thu, 2 Feb 2012 13:04:45 +0100 Subject: [PATCH] qdev: remove parse method for string properties We need the print method to put double quotes, but parsing is not special. Reviewed-by: Anthony Liguori Signed-off-by: Paolo Bonzini --- hw/qdev-properties.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/hw/qdev-properties.c b/hw/qdev-properties.c index 5e19ec8be3..1fc77b5979 100644 --- a/hw/qdev-properties.c +++ b/hw/qdev-properties.c @@ -510,16 +510,6 @@ PropertyInfo qdev_prop_hex64 = { /* --- string --- */ -static int parse_string(DeviceState *dev, Property *prop, const char *str) -{ - char **ptr = qdev_get_prop_ptr(dev, prop); - - if (*ptr) - g_free(*ptr); - *ptr = g_strdup(str); - return 0; -} - static void free_string(DeviceState *dev, Property *prop) { g_free(*(char **)qdev_get_prop_ptr(dev, prop)); @@ -581,7 +571,6 @@ PropertyInfo qdev_prop_string = { .name = "string", .type = PROP_TYPE_STRING, .size = sizeof(char*), - .parse = parse_string, .print = print_string, .free = free_string, .get = get_string,