summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2018-10-11 19:11:23 -0500
committerRuben Pollan <meskio@sindominio.net>2018-10-25 13:39:18 -0500
commitc9751aa9581e3eb771f6ed2578ddf792684153f0 (patch)
treeadc4f25fb5ae9629aebb9b0e080813420d3c397e
parent44a638637ffd975997b6dc2df78aa6ef57faa396 (diff)
[bug] let's not delete the icons until they are not used anymore
-rw-r--r--vendor/github.com/getlantern/systray/systray_linux.c19
1 files changed, 13 insertions, 6 deletions
diff --git a/vendor/github.com/getlantern/systray/systray_linux.c b/vendor/github.com/getlantern/systray/systray_linux.c
index a78f3cf..3ed8ada 100644
--- a/vendor/github.com/getlantern/systray/systray_linux.c
+++ b/vendor/github.com/getlantern/systray/systray_linux.c
@@ -8,6 +8,7 @@
static AppIndicator *global_app_indicator;
static GtkWidget *global_tray_menu = NULL;
static GList *global_menu_items = NULL;
+static char temp_file_name[PATH_MAX] = "";
typedef struct {
GtkWidget *menu_item;
@@ -35,10 +36,20 @@ int nativeLoop(void) {
return 0;
}
+void _unlink_temp_file() {
+ if (strlen(temp_file_name) != 0) {
+ int ret = unlink(temp_file_name);
+ if (ret == -1) {
+ printf("failed to remove temp icon file %s: %s\n", temp_file_name, strerror(errno));
+ }
+ temp_file_name[0] = '\0';
+ }
+}
+
// runs in main thread, should always return FALSE to prevent gtk to execute it again
gboolean do_set_icon(gpointer data) {
GBytes* bytes = (GBytes*)data;
- char* temp_file_name = malloc(PATH_MAX);
+ _unlink_temp_file();
strcpy(temp_file_name, "/tmp/systray_XXXXXX");
int fd = mkstemp(temp_file_name);
if (fd == -1) {
@@ -55,11 +66,6 @@ gboolean do_set_icon(gpointer data) {
}
app_indicator_set_icon_full(global_app_indicator, temp_file_name, "");
app_indicator_set_attention_icon_full(global_app_indicator, temp_file_name, "");
-
- int ret = unlink(temp_file_name);
- if (ret == -1) {
- printf("failed to remove temp icon file %s: %s\n", temp_file_name, strerror(errno));
- }
g_bytes_unref(bytes);
return FALSE;
}
@@ -147,6 +153,7 @@ gboolean do_show_menu_item(gpointer data) {
// runs in main thread, should always return FALSE to prevent gtk to execute it again
gboolean do_quit(gpointer data) {
+ _unlink_temp_file();
// app indicator doesn't provide a way to remove it, hide it as a workaround
app_indicator_set_status(global_app_indicator, APP_INDICATOR_STATUS_PASSIVE);
gtk_main_quit();