commit ce7b081f45c2a94936f9306bcc3c88a99d6b66d1
parent 79a6971409ae7be1de3cd6592a56d0342292e92e
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Mon, 24 Feb 2025 16:13:56 +0100
Fix handling of solid name with spaces
When a solid name included a space, only the last word was considered
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/sstl.c b/src/sstl.c
@@ -288,7 +288,7 @@ parse_name_string
res = RES_MEM_ERR;
goto error;
}
- strcpy(name, tk);
+ strcpy(remain, tk);
}
exit: