Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
azvegint committed Jun 26, 2024
1 parent 30b0c2a commit 065c7f1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ gboolean initXdgDesktopPortal() {
}
portal->senderName = nameStr->str;

g_string_free(nameStr, FALSE);
(void) g_string_free(nameStr, FALSE);

DEBUG_SCREENCAST("connection/sender name %s / %s\n",
name,
Expand Down Expand Up @@ -275,7 +275,7 @@ static void updateRequestPath(
);

*token = tokenStr->str;
g_string_free(tokenStr, FALSE);
(void) g_string_free(tokenStr, FALSE);

GString *pathStr = g_string_new(NULL);

Expand All @@ -287,7 +287,7 @@ static void updateRequestPath(
);

*path = pathStr->str;
g_string_free(pathStr, FALSE);
(void) g_string_free(pathStr, FALSE);
}

static void updateSessionToken(
Expand All @@ -305,7 +305,7 @@ static void updateSessionToken(
);

*token = tokenStr->str;
g_string_free(tokenStr, FALSE);
(void) g_string_free(tokenStr, FALSE);
}

static void registerScreenCastCallback(
Expand Down

0 comments on commit 065c7f1

Please sign in to comment.