Fix segfault (closes #434, #435)

pull/469/head
AnErrupTion 1 year ago
parent 2ffb86213b
commit 19153760d3

@ -196,9 +196,7 @@ void input_desktop_add(
target->list[target->cur] = name;
int name_len = strlen(name);
char* name_simple = malloc(name_len);
memcpy(name_simple, name, name_len);
char* name_simple = strdup(name_len);
if (strstr(name_simple, " ") != NULL)
{

Loading…
Cancel
Save