Fix menu_playlist_find_associated_core

This commit is contained in:
twinaphex 2015-10-31 17:24:28 +01:00
parent 0c691dab06
commit 6edc7aa73e

View File

@ -2265,7 +2265,10 @@ bool menu_playlist_find_associated_core(const char *path, char *s, size_t len)
const char *existing_core = existing_core_paths->elems[j].data;
if (existing_core)
{
strlcpy(s, existing_core, len);
ret = true;
}
}
break;
}