From f0519e541f296fc277db636567bb0f0e4d9fc62d Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 17 Nov 2016 11:39:27 -0500 Subject: [PATCH] [TSAN] main: Stop calling g_set_prgname() It turns out this is basically racy with the presence of other threads. It was really cosmetic so let's stop doing it and make `-fsanitize=thread` happy. Closes: #582 Approved by: jlebon --- src/ostree/ot-main.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/ostree/ot-main.c b/src/ostree/ot-main.c index 5080e8c6..0d0587f2 100644 --- a/src/ostree/ot-main.c +++ b/src/ostree/ot-main.c @@ -125,7 +125,6 @@ ostree_run (int argc, GError *error = NULL; GCancellable *cancellable = NULL; const char *command_name = NULL; - g_autofree char *prgname = NULL; gboolean success = FALSE; int in, out; @@ -202,10 +201,6 @@ ostree_run (int argc, goto out; } - prgname = g_strdup_printf ("%s %s", g_get_prgname (), command_name); - g_set_prgname (prgname); - - if (!command->fn (argc, argv, cancellable, &error)) goto out;