diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2015-05-05 10:33:53 -0400 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2015-05-06 22:07:04 -0400 |
commit | 6a5f7b1288d3d6634922bf3cb2370474cd5a22f7 (patch) | |
tree | db0ae8beee55039447018911381c664926b83aac /src/ostree | |
parent | 4ee1acd98109e98fd0a659f43d3187597d034f05 (diff) | |
download | ostree-6a5f7b1288d3d6634922bf3cb2370474cd5a22f7.tar.gz |
Use glnx_unref_object instead of gs_unref_object
For non-GIO object types, at least until autocleanup support for GObject
based types becomes more widespread.
Diffstat (limited to 'src/ostree')
35 files changed, 66 insertions, 66 deletions
diff --git a/src/ostree/ot-admin-builtin-cleanup.c b/src/ostree/ot-admin-builtin-cleanup.c index 98baf861..49478614 100644 --- a/src/ostree/ot-admin-builtin-cleanup.c +++ b/src/ostree/ot-admin-builtin-cleanup.c @@ -38,7 +38,7 @@ gboolean ot_admin_builtin_cleanup (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context; - gs_unref_object OstreeSysroot *sysroot = NULL; + glnx_unref_object OstreeSysroot *sysroot = NULL; gboolean ret = FALSE; context = g_option_context_new ("Delete untagged deployments and repository objects"); diff --git a/src/ostree/ot-admin-builtin-deploy.c b/src/ostree/ot-admin-builtin-deploy.c index b2b24f03..6fc0deb2 100644 --- a/src/ostree/ot-admin-builtin-deploy.c +++ b/src/ostree/ot-admin-builtin-deploy.c @@ -55,12 +55,12 @@ ot_admin_builtin_deploy (int argc, char **argv, GCancellable *cancellable, GErro gboolean ret = FALSE; const char *refspec; GOptionContext *context; - gs_unref_object OstreeSysroot *sysroot = NULL; + glnx_unref_object OstreeSysroot *sysroot = NULL; GKeyFile *origin = NULL; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; gs_unref_ptrarray GPtrArray *new_deployments = NULL; - gs_unref_object OstreeDeployment *new_deployment = NULL; - gs_unref_object OstreeDeployment *merge_deployment = NULL; + glnx_unref_object OstreeDeployment *new_deployment = NULL; + glnx_unref_object OstreeDeployment *merge_deployment = NULL; g_autofree char *revision = NULL; __attribute__((cleanup(_ostree_kernel_args_cleanup))) OstreeKernelArgs *kargs = NULL; diff --git a/src/ostree/ot-admin-builtin-diff.c b/src/ostree/ot-admin-builtin-diff.c index 60bfcd3d..cb45c806 100644 --- a/src/ostree/ot-admin-builtin-diff.c +++ b/src/ostree/ot-admin-builtin-diff.c @@ -41,9 +41,9 @@ gboolean ot_admin_builtin_diff (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context; - gs_unref_object OstreeSysroot *sysroot = NULL; + glnx_unref_object OstreeSysroot *sysroot = NULL; gboolean ret = FALSE; - gs_unref_object OstreeDeployment *deployment = NULL; + glnx_unref_object OstreeDeployment *deployment = NULL; g_autoptr(GFile) deployment_dir = NULL; gs_unref_ptrarray GPtrArray *modified = NULL; gs_unref_ptrarray GPtrArray *removed = NULL; diff --git a/src/ostree/ot-admin-builtin-init-fs.c b/src/ostree/ot-admin-builtin-init-fs.c index 943a68f6..33856419 100644 --- a/src/ostree/ot-admin-builtin-init-fs.c +++ b/src/ostree/ot-admin-builtin-init-fs.c @@ -38,11 +38,11 @@ gboolean ot_admin_builtin_init_fs (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context; - gs_unref_object OstreeSysroot *sysroot = NULL; + glnx_unref_object OstreeSysroot *sysroot = NULL; gboolean ret = FALSE; g_autoptr(GFile) dir = NULL; g_autoptr(GFile) child = NULL; - gs_unref_object OstreeSysroot *target_sysroot = NULL; + glnx_unref_object OstreeSysroot *target_sysroot = NULL; guint i; const char *normal_toplevels[] = {"boot", "dev", "home", "proc", "run", "sys"}; diff --git a/src/ostree/ot-admin-builtin-os-init.c b/src/ostree/ot-admin-builtin-os-init.c index ee5c9dc7..1c575173 100644 --- a/src/ostree/ot-admin-builtin-os-init.c +++ b/src/ostree/ot-admin-builtin-os-init.c @@ -38,7 +38,7 @@ gboolean ot_admin_builtin_os_init (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context; - gs_unref_object OstreeSysroot *sysroot = NULL; + glnx_unref_object OstreeSysroot *sysroot = NULL; gboolean ret = FALSE; const char *osname = NULL; g_autoptr(GFile) deploy_dir = NULL; diff --git a/src/ostree/ot-admin-builtin-set-origin.c b/src/ostree/ot-admin-builtin-set-origin.c index a3f071c7..24a919fd 100644 --- a/src/ostree/ot-admin-builtin-set-origin.c +++ b/src/ostree/ot-admin-builtin-set-origin.c @@ -49,8 +49,8 @@ ot_admin_builtin_set_origin (int argc, char **argv, GCancellable *cancellable, G const char *remotename = NULL; const char *url = NULL; const char *branch = NULL; - gs_unref_object OstreeRepo *repo = NULL; - gs_unref_object OstreeSysroot *sysroot = NULL; + glnx_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeSysroot *sysroot = NULL; OstreeDeployment *target_deployment = NULL; context = g_option_context_new ("REMOTENAME URL [BRANCH]"); diff --git a/src/ostree/ot-admin-builtin-status.c b/src/ostree/ot-admin-builtin-status.c index 242a915d..9dac4da9 100644 --- a/src/ostree/ot-admin-builtin-status.c +++ b/src/ostree/ot-admin-builtin-status.c @@ -85,9 +85,9 @@ gboolean ot_admin_builtin_status (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context; - gs_unref_object OstreeSysroot *sysroot = NULL; + glnx_unref_object OstreeSysroot *sysroot = NULL; gboolean ret = FALSE; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; OstreeDeployment *booted_deployment = NULL; gs_unref_ptrarray GPtrArray *deployments = NULL; guint i; @@ -120,7 +120,7 @@ ot_admin_builtin_status (int argc, char **argv, GCancellable *cancellable, GErro GKeyFile *origin; const char *ref = ostree_deployment_get_csum (deployment); g_autofree char *version = version_of_commit (repo, ref); - gs_unref_object OstreeGpgVerifyResult *result = NULL; + glnx_unref_object OstreeGpgVerifyResult *result = NULL; GString *output_buffer; guint jj, n_signatures; GError *local_error = NULL; diff --git a/src/ostree/ot-admin-builtin-switch.c b/src/ostree/ot-admin-builtin-switch.c index db3d0c3b..61793e50 100644 --- a/src/ostree/ot-admin-builtin-switch.c +++ b/src/ostree/ot-admin-builtin-switch.c @@ -44,9 +44,9 @@ ot_admin_builtin_switch (int argc, char **argv, GCancellable *cancellable, GErro { gboolean ret = FALSE; GOptionContext *context; - gs_unref_object OstreeSysroot *sysroot = NULL; + glnx_unref_object OstreeSysroot *sysroot = NULL; const char *new_provided_refspec = NULL; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; g_autofree char *origin_refspec = NULL; g_autofree char *origin_remote = NULL; g_autofree char *origin_ref = NULL; @@ -56,10 +56,10 @@ ot_admin_builtin_switch (int argc, char **argv, GCancellable *cancellable, GErro g_autofree char *new_revision = NULL; g_autoptr(GFile) deployment_path = NULL; g_autoptr(GFile) deployment_origin_path = NULL; - gs_unref_object OstreeDeployment *merge_deployment = NULL; - gs_unref_object OstreeDeployment *new_deployment = NULL; - gs_unref_object OstreeSysrootUpgrader *upgrader = NULL; - gs_unref_object OstreeAsyncProgress *progress = NULL; + glnx_unref_object OstreeDeployment *merge_deployment = NULL; + glnx_unref_object OstreeDeployment *new_deployment = NULL; + glnx_unref_object OstreeSysrootUpgrader *upgrader = NULL; + glnx_unref_object OstreeAsyncProgress *progress = NULL; gboolean changed; GSConsole *console = NULL; gboolean in_status_line = FALSE; diff --git a/src/ostree/ot-admin-builtin-undeploy.c b/src/ostree/ot-admin-builtin-undeploy.c index 3390ee9c..39ae0733 100644 --- a/src/ostree/ot-admin-builtin-undeploy.c +++ b/src/ostree/ot-admin-builtin-undeploy.c @@ -37,12 +37,12 @@ ot_admin_builtin_undeploy (int argc, char **argv, GCancellable *cancellable, GEr { gboolean ret = FALSE; GOptionContext *context; - gs_unref_object OstreeSysroot *sysroot = NULL; + glnx_unref_object OstreeSysroot *sysroot = NULL; const char *deploy_index_str; int deploy_index; gs_unref_ptrarray GPtrArray *current_deployments = NULL; - gs_unref_object OstreeDeployment *booted_deployment = NULL; - gs_unref_object OstreeDeployment *target_deployment = NULL; + glnx_unref_object OstreeDeployment *booted_deployment = NULL; + glnx_unref_object OstreeDeployment *target_deployment = NULL; context = g_option_context_new ("INDEX - Delete deployment INDEX"); diff --git a/src/ostree/ot-admin-builtin-upgrade.c b/src/ostree/ot-admin-builtin-upgrade.c index 875f6fe8..abf37596 100644 --- a/src/ostree/ot-admin-builtin-upgrade.c +++ b/src/ostree/ot-admin-builtin-upgrade.c @@ -49,19 +49,19 @@ ot_admin_builtin_upgrade (int argc, char **argv, GCancellable *cancellable, GErr { gboolean ret = FALSE; GOptionContext *context; - gs_unref_object OstreeSysroot *sysroot = NULL; - gs_unref_object OstreeSysrootUpgrader *upgrader = NULL; + glnx_unref_object OstreeSysroot *sysroot = NULL; + glnx_unref_object OstreeSysrootUpgrader *upgrader = NULL; g_autofree char *origin_remote = NULL; g_autofree char *origin_ref = NULL; g_autofree char *origin_refspec = NULL; g_autofree char *new_revision = NULL; g_autoptr(GFile) deployment_path = NULL; g_autoptr(GFile) deployment_origin_path = NULL; - gs_unref_object OstreeDeployment *merge_deployment = NULL; - gs_unref_object OstreeDeployment *new_deployment = NULL; + glnx_unref_object OstreeDeployment *merge_deployment = NULL; + glnx_unref_object OstreeDeployment *new_deployment = NULL; GSConsole *console = NULL; gboolean in_status_line = FALSE; - gs_unref_object OstreeAsyncProgress *progress = NULL; + glnx_unref_object OstreeAsyncProgress *progress = NULL; gboolean changed; OstreeSysrootUpgraderPullFlags upgraderpullflags = 0; diff --git a/src/ostree/ot-admin-instutil-builtin-grub2-generate.c b/src/ostree/ot-admin-instutil-builtin-grub2-generate.c index 7fd05b64..832ac069 100644 --- a/src/ostree/ot-admin-instutil-builtin-grub2-generate.c +++ b/src/ostree/ot-admin-instutil-builtin-grub2-generate.c @@ -39,10 +39,10 @@ ot_admin_instutil_builtin_grub2_generate (int argc, char **argv, GCancellable *c gboolean ret = FALSE; guint bootversion; g_autoptr(GFile) subpath = NULL; - gs_unref_object OstreeSePolicy *sepolicy = NULL; + glnx_unref_object OstreeSePolicy *sepolicy = NULL; gs_unref_ptrarray GPtrArray *deployments = NULL; GOptionContext *context = NULL; - gs_unref_object OstreeSysroot *sysroot = NULL; + glnx_unref_object OstreeSysroot *sysroot = NULL; g_autoptr(GFile) deployment_path = NULL; context = g_option_context_new ("[BOOTVERSION] - generate GRUB2 configuration from given BLS entries"); diff --git a/src/ostree/ot-admin-instutil-builtin-selinux-ensure-labeled.c b/src/ostree/ot-admin-instutil-builtin-selinux-ensure-labeled.c index d1e80e9b..471410cd 100644 --- a/src/ostree/ot-admin-instutil-builtin-selinux-ensure-labeled.c +++ b/src/ostree/ot-admin-instutil-builtin-selinux-ensure-labeled.c @@ -185,11 +185,11 @@ ot_admin_instutil_builtin_selinux_ensure_labeled (int argc, char **argv, GCancel const char *policy_name; g_autoptr(GFile) subpath = NULL; const char *prefix = NULL; - gs_unref_object OstreeSePolicy *sepolicy = NULL; + glnx_unref_object OstreeSePolicy *sepolicy = NULL; gs_unref_ptrarray GPtrArray *deployments = NULL; OstreeDeployment *first_deployment; GOptionContext *context = NULL; - gs_unref_object OstreeSysroot *sysroot = NULL; + glnx_unref_object OstreeSysroot *sysroot = NULL; g_autoptr(GFile) deployment_path = NULL; context = g_option_context_new ("[SUBPATH PREFIX] - relabel all or part of a deployment"); diff --git a/src/ostree/ot-admin-instutil-builtin-set-kargs.c b/src/ostree/ot-admin-instutil-builtin-set-kargs.c index 9150a26f..a985979f 100644 --- a/src/ostree/ot-admin-instutil-builtin-set-kargs.c +++ b/src/ostree/ot-admin-instutil-builtin-set-kargs.c @@ -51,7 +51,7 @@ ot_admin_instutil_builtin_set_kargs (int argc, char **argv, GCancellable *cancel gs_unref_ptrarray GPtrArray *deployments = NULL; OstreeDeployment *first_deployment = NULL; GOptionContext *context = NULL; - gs_unref_object OstreeSysroot *sysroot = NULL; + glnx_unref_object OstreeSysroot *sysroot = NULL; __attribute__((cleanup(_ostree_kernel_args_cleanup))) OstreeKernelArgs *kargs = NULL; context = g_option_context_new ("ARGS - set new kernel command line arguments"); diff --git a/src/ostree/ot-builtin-cat.c b/src/ostree/ot-builtin-cat.c index f63ec5de..e258f3f7 100644 --- a/src/ostree/ot-builtin-cat.c +++ b/src/ostree/ot-builtin-cat.c @@ -62,7 +62,7 @@ gboolean ostree_builtin_cat (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; gboolean ret = FALSE; int i; const char *rev; diff --git a/src/ostree/ot-builtin-checkout.c b/src/ostree/ot-builtin-checkout.c index a1ce316c..9929a37b 100644 --- a/src/ostree/ot-builtin-checkout.c +++ b/src/ostree/ot-builtin-checkout.c @@ -225,7 +225,7 @@ gboolean ostree_builtin_checkout (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; gboolean ret = FALSE; const char *commit; const char *destination; diff --git a/src/ostree/ot-builtin-commit.c b/src/ostree/ot-builtin-commit.c index 73885bc7..f75def1f 100644 --- a/src/ostree/ot-builtin-commit.c +++ b/src/ostree/ot-builtin-commit.c @@ -292,7 +292,7 @@ gboolean ostree_builtin_commit (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; gboolean ret = FALSE; gboolean skip_commit = FALSE; g_autoptr(GFile) arg = NULL; @@ -301,7 +301,7 @@ ostree_builtin_commit (int argc, char **argv, GCancellable *cancellable, GError g_autoptr(GFile) root = NULL; gs_unref_variant GVariant *metadata = NULL; gs_unref_variant GVariant *detached_metadata = NULL; - gs_unref_object OstreeMutableTree *mtree = NULL; + glnx_unref_object OstreeMutableTree *mtree = NULL; g_autofree char *tree_type = NULL; gs_unref_hashtable GHashTable *mode_adds = NULL; OstreeRepoCommitModifierFlags flags = 0; diff --git a/src/ostree/ot-builtin-config.c b/src/ostree/ot-builtin-config.c index 7590dc1e..75ccbeb0 100644 --- a/src/ostree/ot-builtin-config.c +++ b/src/ostree/ot-builtin-config.c @@ -56,7 +56,7 @@ gboolean ostree_builtin_config (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context = NULL; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; gboolean ret = FALSE; const char *op; const char *section_key; diff --git a/src/ostree/ot-builtin-diff.c b/src/ostree/ot-builtin-diff.c index 11036e8f..385d9103 100644 --- a/src/ostree/ot-builtin-diff.c +++ b/src/ostree/ot-builtin-diff.c @@ -120,7 +120,7 @@ ostree_builtin_diff (int argc, char **argv, GCancellable *cancellable, GError ** { gboolean ret = FALSE; GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; const char *src; const char *target; g_autofree char *src_prev = NULL; diff --git a/src/ostree/ot-builtin-fsck.c b/src/ostree/ot-builtin-fsck.c index 6ffe0e28..e13c1a8e 100644 --- a/src/ostree/ot-builtin-fsck.c +++ b/src/ostree/ot-builtin-fsck.c @@ -239,7 +239,7 @@ ostree_builtin_fsck (int argc, char **argv, GCancellable *cancellable, GError ** { gboolean ret = FALSE; GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; GHashTableIter hash_iter; gpointer key, value; gboolean found_corruption = FALSE; diff --git a/src/ostree/ot-builtin-gpg-sign.c b/src/ostree/ot-builtin-gpg-sign.c index 93c78a4a..d1f016d8 100644 --- a/src/ostree/ot-builtin-gpg-sign.c +++ b/src/ostree/ot-builtin-gpg-sign.c @@ -54,7 +54,7 @@ delete_signatures (OstreeRepo *repo, GError **error) { GVariantDict metadata_dict; - gs_unref_object OstreeGpgVerifyResult *result = NULL; + glnx_unref_object OstreeGpgVerifyResult *result = NULL; gs_unref_variant GVariant *old_metadata = NULL; gs_unref_variant GVariant *new_metadata = NULL; gs_unref_variant GVariant *signature_data = NULL; @@ -198,7 +198,7 @@ gboolean ostree_builtin_gpg_sign (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; g_autofree char *resolved_commit = NULL; const char *commit; char **key_ids; diff --git a/src/ostree/ot-builtin-init.c b/src/ostree/ot-builtin-init.c index 9aceda50..05d64aca 100644 --- a/src/ostree/ot-builtin-init.c +++ b/src/ostree/ot-builtin-init.c @@ -38,7 +38,7 @@ gboolean ostree_builtin_init (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context = NULL; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; gboolean ret = FALSE; OstreeRepoMode mode; diff --git a/src/ostree/ot-builtin-log.c b/src/ostree/ot-builtin-log.c index edc494ec..e00ddd6b 100644 --- a/src/ostree/ot-builtin-log.c +++ b/src/ostree/ot-builtin-log.c @@ -82,7 +82,7 @@ ostree_builtin_log (int argc, GError **error) { GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; gboolean ret = FALSE; const char *rev; g_autofree char *checksum = NULL; diff --git a/src/ostree/ot-builtin-ls.c b/src/ostree/ot-builtin-ls.c index 811abc24..ab63c8bb 100644 --- a/src/ostree/ot-builtin-ls.c +++ b/src/ostree/ot-builtin-ls.c @@ -243,7 +243,7 @@ gboolean ostree_builtin_ls (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; gboolean ret = FALSE; const char *rev; int i; diff --git a/src/ostree/ot-builtin-prune.c b/src/ostree/ot-builtin-prune.c index 5bef2099..5b6cb3b5 100644 --- a/src/ostree/ot-builtin-prune.c +++ b/src/ostree/ot-builtin-prune.c @@ -43,7 +43,7 @@ ostree_builtin_prune (int argc, char **argv, GCancellable *cancellable, GError * { gboolean ret = FALSE; GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; g_autofree char *formatted_freed_size = NULL; OstreeRepoPruneFlags pruneflags = 0; gint n_objects_total; diff --git a/src/ostree/ot-builtin-pull-local.c b/src/ostree/ot-builtin-pull-local.c index 40179f25..993c53ec 100644 --- a/src/ostree/ot-builtin-pull-local.c +++ b/src/ostree/ot-builtin-pull-local.c @@ -44,12 +44,12 @@ ostree_builtin_pull_local (int argc, char **argv, GCancellable *cancellable, GEr { gboolean ret = FALSE; GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; int i; const char *src_repo_arg; GSConsole *console = NULL; g_autofree char *src_repo_uri = NULL; - gs_unref_object OstreeAsyncProgress *progress = NULL; + glnx_unref_object OstreeAsyncProgress *progress = NULL; gs_unref_ptrarray GPtrArray *refs_to_fetch = NULL; gs_unref_hashtable GHashTable *source_objects = NULL; @@ -87,7 +87,7 @@ ostree_builtin_pull_local (int argc, char **argv, GCancellable *cancellable, GEr if (argc == 2) { g_autoptr(GFile) src_repo_path = g_file_new_for_path (src_repo_arg); - gs_unref_object OstreeRepo *src_repo = ostree_repo_new (src_repo_path); + glnx_unref_object OstreeRepo *src_repo = ostree_repo_new (src_repo_path); gs_unref_hashtable GHashTable *refs_to_clone = NULL; refs_to_fetch = g_ptr_array_new_with_free_func (g_free); diff --git a/src/ostree/ot-builtin-pull.c b/src/ostree/ot-builtin-pull.c index cb407a86..e19ef3c1 100644 --- a/src/ostree/ot-builtin-pull.c +++ b/src/ostree/ot-builtin-pull.c @@ -58,13 +58,13 @@ gboolean ostree_builtin_pull (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; gboolean ret = FALSE; g_autofree char *remote = NULL; OstreeRepoPullFlags pullflags = 0; GSConsole *console = NULL; gs_unref_ptrarray GPtrArray *refs_to_fetch = NULL; - gs_unref_object OstreeAsyncProgress *progress = NULL; + glnx_unref_object OstreeAsyncProgress *progress = NULL; gulong signal_handler_id = 0; context = g_option_context_new ("REMOTE [BRANCH...] - Download data from remote repository"); diff --git a/src/ostree/ot-builtin-refs.c b/src/ostree/ot-builtin-refs.c index 2b579276..95879900 100644 --- a/src/ostree/ot-builtin-refs.c +++ b/src/ostree/ot-builtin-refs.c @@ -39,7 +39,7 @@ ostree_builtin_refs (int argc, char **argv, GCancellable *cancellable, GError ** { gboolean ret = FALSE; GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; const char *refspec_prefix = NULL; gs_unref_hashtable GHashTable *refs = NULL; GHashTableIter hashiter; diff --git a/src/ostree/ot-builtin-reset.c b/src/ostree/ot-builtin-reset.c index 6300d162..eed44c07 100644 --- a/src/ostree/ot-builtin-reset.c +++ b/src/ostree/ot-builtin-reset.c @@ -56,7 +56,7 @@ ostree_builtin_reset (int argc, GError **error) { GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; gboolean ret = FALSE; const char *ref; const char *target = NULL; diff --git a/src/ostree/ot-builtin-rev-parse.c b/src/ostree/ot-builtin-rev-parse.c index 9bd3aaa8..fb68d4ac 100644 --- a/src/ostree/ot-builtin-rev-parse.c +++ b/src/ostree/ot-builtin-rev-parse.c @@ -35,7 +35,7 @@ gboolean ostree_builtin_rev_parse (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; gboolean ret = FALSE; const char *rev = "master"; int i; diff --git a/src/ostree/ot-builtin-show.c b/src/ostree/ot-builtin-show.c index c25e30b4..421d770e 100644 --- a/src/ostree/ot-builtin-show.c +++ b/src/ostree/ot-builtin-show.c @@ -169,7 +169,7 @@ print_object (OstreeRepo *repo, if (objtype == OSTREE_OBJECT_TYPE_COMMIT) { - gs_unref_object OstreeGpgVerifyResult *result = NULL; + glnx_unref_object OstreeGpgVerifyResult *result = NULL; GError *local_error = NULL; g_autoptr(GFile) gpg_homedir = opt_gpg_homedir ? g_file_new_for_path (opt_gpg_homedir) : NULL; @@ -246,7 +246,7 @@ gboolean ostree_builtin_show (int argc, char **argv, GCancellable *cancellable, GError **error) { GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; gboolean ret = FALSE; const char *rev; g_autofree char *resolved_rev = NULL; diff --git a/src/ostree/ot-builtin-static-delta.c b/src/ostree/ot-builtin-static-delta.c index fba3d303..ad884e91 100644 --- a/src/ostree/ot-builtin-static-delta.c +++ b/src/ostree/ot-builtin-static-delta.c @@ -100,7 +100,7 @@ ot_static_delta_builtin_list (int argc, char **argv, GCancellable *cancellable, gs_unref_ptrarray GPtrArray *delta_names = NULL; guint i; GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; context = g_option_context_new ("LIST - list static delta files"); @@ -134,7 +134,7 @@ ot_static_delta_builtin_generate (int argc, char **argv, GCancellable *cancellab { gboolean ret = FALSE; GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; context = g_option_context_new ("Generate static delta files"); if (!ostree_option_context_parse (context, generate_options, &argc, &argv, OSTREE_BUILTIN_FLAG_NONE, &repo, cancellable, error)) @@ -245,7 +245,7 @@ ot_static_delta_builtin_apply_offline (int argc, char **argv, GCancellable *canc const char *patharg; g_autoptr(GFile) path = NULL; GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; context = g_option_context_new ("DELTA - Apply static delta file"); if (!ostree_option_context_parse (context, apply_offline_options, &argc, &argv, OSTREE_BUILTIN_FLAG_NONE, &repo, cancellable, error)) @@ -286,7 +286,7 @@ ostree_builtin_static_delta (int argc, char **argv, GCancellable *cancellable, G gboolean ret = FALSE; OstreeCommand *command = NULL; const char *cmdname = NULL; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; int i; gboolean want_help = FALSE; diff --git a/src/ostree/ot-builtin-summary.c b/src/ostree/ot-builtin-summary.c index 81566898..ed167b7c 100644 --- a/src/ostree/ot-builtin-summary.c +++ b/src/ostree/ot-builtin-summary.c @@ -37,7 +37,7 @@ ostree_builtin_summary (int argc, char **argv, GCancellable *cancellable, GError { gboolean ret = FALSE; GOptionContext *context; - gs_unref_object OstreeRepo *repo = NULL; + glnx_unref_object OstreeRepo *repo = NULL; context = g_option_context_new ("Manage summary metadata"); diff --git a/src/ostree/ot-builtin-trivial-httpd.c b/src/ostree/ot-builtin-trivial-httpd.c index cde4abbe..7d437fb0 100644 --- a/src/ostree/ot-builtin-trivial-httpd.c +++ b/src/ostree/ot-builtin-trivial-httpd.c @@ -332,7 +332,7 @@ ostree_builtin_trivial_httpd (int argc, char **argv, GCancellable *cancellable, const char *dirpath; OtTrivialHttpd appstruct = { 0, }; OtTrivialHttpd *app = &appstruct; - gs_unref_object SoupServer *server = NULL; + glnx_unref_object SoupServer *server = NULL; g_autoptr(GFileMonitor) dirmon = NULL; context = g_option_context_new ("[DIR] - Simple webserver"); diff --git a/src/ostree/ot-editor.c b/src/ostree/ot-editor.c index b81312fa..2b2101f6 100644 --- a/src/ostree/ot-editor.c +++ b/src/ostree/ot-editor.c @@ -62,8 +62,8 @@ ot_editor_prompt (OstreeRepo *repo, GCancellable *cancellable, GError **error) { - gs_unref_object GSSubprocessContext *ctx = NULL; - gs_unref_object GSSubprocess *proc = NULL; + glnx_unref_object GSSubprocessContext *ctx = NULL; + glnx_unref_object GSSubprocess *proc = NULL; g_autoptr(GFile) file = NULL; g_autoptr(GFileIOStream) io = NULL; GOutputStream *output; diff --git a/src/ostree/ot-main.c b/src/ostree/ot-main.c index 14e9aa04..f0fcacea 100644 --- a/src/ostree/ot-main.c +++ b/src/ostree/ot-main.c @@ -312,7 +312,7 @@ ostree_admin_option_context_parse (GOptionContext *context, GError **error) { g_autoptr(GFile) sysroot_path = NULL; - gs_unref_object OstreeSysroot *sysroot = NULL; + glnx_unref_object OstreeSysroot *sysroot = NULL; gboolean success = FALSE; /* Entries are listed in --help output in the order added. We add the |