Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2018-05-27 00:02:32 +0300
committerAntenore Gatta <antenore@simbiosi.org>2018-05-27 00:02:32 +0300
commit9cf6931b3b533d607e0ac1428c38f5da862df55b (patch)
treef200653044009ce509df3305a03d0cd4e5af3d1a /src/remmina_file.c
parentbdbfc347b4be9510651bfaf628fc8aa5abef6671 (diff)
Fixing segmentation fault due to setting name NULL
Diffstat (limited to 'src/remmina_file.c')
-rw-r--r--src/remmina_file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/remmina_file.c b/src/remmina_file.c
index bd8168a93..0565ecef3 100644
--- a/src/remmina_file.c
+++ b/src/remmina_file.c
@@ -547,6 +547,7 @@ void remmina_file_unsave_password(RemminaFile *remminafile)
setting_iter = protocol_plugin->basic_settings;
if (setting_iter) {
while (setting_iter->type != REMMINA_PROTOCOL_SETTING_TYPE_END) {
+ g_debug("setting name: %s", setting_iter->name);
if (remmina_plugin_manager_is_encrypted_setting(protocol_plugin, setting_iter->name)) {
remmina_file_set_string(remminafile, remmina_plugin_manager_get_canonical_setting_name(setting_iter), NULL);
}