summaryrefslogtreecommitdiffstats
path: root/src/application.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/application.c')
-rw-r--r--src/application.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/application.c b/src/application.c
index 742d7cd..24b8094 100644
--- a/src/application.c
+++ b/src/application.c
@@ -82,12 +82,16 @@ download_started_cb(WebKitWebContext G_GNUC_UNUSED *context,
MqApplication *
mq_application_new(const gchar *profile)
{
- MqApplication *application;
+ MqApplication *application;
+ gchar *current_profile;
application = malloc(sizeof(*application));
application->profiles = mq_profiles_new();
mq_profiles_set_current(application->profiles, profile);
- application->config = mq_config_new(profile, MQ_CONFIG_PROFILE_DEFAULT);
+ current_profile = mq_profiles_get_current(application->profiles);
+ application->config = mq_config_new(current_profile,
+ MQ_CONFIG_PROFILE_DEFAULT);
+ g_free(current_profile);
mq_config_load(application->config);
application->windows = NULL;
application->tabs = g_hash_table_new_full(g_int64_hash, g_int64_equal,