commit 6a28f853fb5c7d9767da61b2326470c5bfe0c72b
parent 42520ed14fdfb2805cd5a65743ee63ac5cfc4c08
Author: Michael Rasmussen <mir@datanom.net>
Date: Fri, 27 May 2022 21:37:26 +0200
Fix CID 1504580
Signed-off-by: Michael Rasmussen <mir@datanom.net>
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/prefs_account.c b/src/prefs_account.c
@@ -6021,6 +6021,7 @@ static void prefs_account_oauth2_listener(GTask *task, gpointer source, gpointer
debug_print("oauth2 listener could not create socket\n");
g_task_return_boolean (task, TRUE);
g_object_unref (task);
+ return;
}
debug_print("oauth2 listener socket created\n");
@@ -6036,6 +6037,7 @@ static void prefs_account_oauth2_listener(GTask *task, gpointer source, gpointer
debug_print("oauth2 listener bind failed\n");
g_task_return_boolean (task, TRUE);
g_object_unref (task);
+ return;
}
debug_print("oauth2 listener bind done\n");
@@ -6060,6 +6062,7 @@ static void prefs_account_oauth2_listener(GTask *task, gpointer source, gpointer
debug_print("oauth2 listener accept failed\n");
g_task_return_boolean (task, TRUE);
g_object_unref (task);
+ return;
}
debug_print("oauth2 listener connection accepted\n");