mirror of
https://gitlab.freedesktop.org/libfprint/fprintd.git
synced 2026-01-28 11:50:39 +01:00
file_storage: Do not ignore STATE_DIRECTORY if it's set to an actual path
This commit is contained in:
parent
b9cdb58a1a
commit
3faaa81257
1 changed files with 4 additions and 0 deletions
|
|
@ -66,6 +66,10 @@ get_storage_path (void)
|
|||
elems = g_strsplit (path, ":", -1);
|
||||
storage_path = g_strdup (elems[0]);
|
||||
}
|
||||
else if (*path)
|
||||
{
|
||||
storage_path = g_strdup (path);
|
||||
}
|
||||
}
|
||||
|
||||
if (storage_path == NULL)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue