Skip to content
Snippets Groups Projects
Commit 9e069f20 authored by Simon McVittie's avatar Simon McVittie
Browse files

flatpak_bwrap_free: Realign with the version in flatpak 1.15.x


No functional change, but the order in which things were freed is
slightly different in the version I upstreamed to Flatpak.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent 37f27aec
No related branches found
No related tags found
1 merge request!708pressure-vessel: Update Flatpak-derived code to Flatpak 1.14.6
......@@ -83,10 +83,10 @@ void
flatpak_bwrap_free (FlatpakBwrap *bwrap)
{
g_ptr_array_unref (bwrap->argv);
g_clear_pointer (&bwrap->runtime_dir_members, g_ptr_array_unref);
g_array_unref (bwrap->noinherit_fds);
g_array_unref (bwrap->fds);
g_strfreev (bwrap->envp);
g_clear_pointer (&bwrap->runtime_dir_members, g_ptr_array_unref);
g_free (bwrap);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment