From dcf8b0114d60b057d94007dba3ca7f4e758da89c Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Fri, 11 Dec 2009 08:47:51 +0000 Subject: [PATCH] libxenlight: fix cd-insert cli arguments parsing Signed-off-by: Stefano Stabellini --- tools/libxl/xl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/libxl/xl.c b/tools/libxl/xl.c index 99f89c0700..fa92ae3f4d 100644 --- a/tools/libxl/xl.c +++ b/tools/libxl/xl.c @@ -904,10 +904,10 @@ void cd_insert(char *dom, char *virtdev, char *phys) disk.phystype = PHYSTYPE_FILE; } } else { - p = '\0'; - disk.physpath = strdup(p); + *p = '\0'; p++; - libxl_string_to_phystype(&ctx, p, &disk.phystype); + disk.physpath = p; + libxl_string_to_phystype(&ctx, phys, &disk.phystype); } } else { disk.physpath = NULL; -- 2.30.2