Fix uninitialized variable (#17256)
This commit is contained in:
parent
840bee7297
commit
48f156fefe
|
@ -5267,7 +5267,7 @@ static const char *input_overlay_path(bool want_osk)
|
||||||
{
|
{
|
||||||
if (!string_is_empty(content_path))
|
if (!string_is_empty(content_path))
|
||||||
{
|
{
|
||||||
const struct playlist_entry *entry;
|
const struct playlist_entry *entry = NULL;
|
||||||
playlist_get_index_by_path(playlist, content_path, &entry);
|
playlist_get_index_by_path(playlist, content_path, &entry);
|
||||||
if (entry && entry->db_name)
|
if (entry && entry->db_name)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue