diff options
author | Jan-Michael Brummer <jan.brummer@tabos.org> | 2020-05-07 11:33:01 +0200 |
---|---|---|
committer | Jan-Michael Brummer <jan.brummer@tabos.org> | 2020-05-07 16:28:45 +0200 |
commit | 59a58e798f557fa0608b0263e77eddbf3263293f (patch) | |
tree | 7299632058b16996db0b8dad249044bd4340aa02 /lib | |
parent | b56a1c9c55f4fbd88e5fcd44666180902824d8de (diff) | |
download | epiphany-59a58e798f557fa0608b0263e77eddbf3263293f.tar.gz |
Fix g_autoxxx uninitialized warnings
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ephy-profile-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ephy-profile-utils.c b/lib/ephy-profile-utils.c index 42d818ded..a2f618125 100644 --- a/lib/ephy-profile-utils.c +++ b/lib/ephy-profile-utils.c @@ -64,8 +64,8 @@ gboolean ephy_profile_utils_set_migration_version_for_profile_dir (int version, const char *profile_directory) { - g_autofree char *migrated_file; - g_autofree char *contents; + g_autofree char *migrated_file = NULL; + g_autofree char *contents = NULL; gboolean result = FALSE; migrated_file = g_build_filename (profile_directory, |