Fix extension folder handling in the failing case
This commit is contained in:
parent
626c5c904f
commit
89fbbaca46
1 changed files with 27 additions and 24 deletions
|
@ -1717,11 +1717,12 @@ midori_load_extensions (gpointer data)
|
|||
|
||||
/* Load extensions */
|
||||
extensions = katze_array_new (MIDORI_TYPE_EXTENSION);
|
||||
extension_path = g_build_filename (LIBDIR, PACKAGE_NAME, NULL);
|
||||
if (g_module_supported ())
|
||||
{
|
||||
extension_path = g_build_filename (LIBDIR, PACKAGE_NAME, NULL);
|
||||
GDir* extension_dir = g_dir_open (extension_path, 0, NULL);
|
||||
|
||||
if (extension_dir != NULL)
|
||||
{
|
||||
while ((filename = g_dir_read_name (extension_dir)))
|
||||
{
|
||||
gchar* fullname;
|
||||
|
@ -1749,6 +1750,8 @@ midori_load_extensions (gpointer data)
|
|||
}
|
||||
g_dir_close (extension_dir);
|
||||
}
|
||||
g_free (extension_path);
|
||||
}
|
||||
|
||||
g_object_set (app, "extensions", extensions, NULL);
|
||||
|
||||
|
|
Loading…
Reference in a new issue