diff options
| author | Phaedrus Leeds <matthew.leeds@endlessm.com> | 2020-09-11 18:17:10 -0700 |
|---|---|---|
| committer | Phaedrus Leeds <matthew.leeds@endlessm.com> | 2020-09-11 18:17:10 -0700 |
| commit | 7987d4f852fa9997bc8de2ed3a357ef9ed081e11 (patch) | |
| tree | 625746163c5cbbe7c283ca0ed378b239f0e74cd5 | |
| parent | bf6f4cebf5a1491c8434400eb09e6eabbe691110 (diff) | |
| download | flatpak-fix-remote-info-commit.tar.gz | |
Avoid critical error in remote-info commandfix-remote-info-commit
Without this patch, the remote-info command will sometimes emit a
critical error "g_utf8_strlen: assertion 'p != NULL || max == 0' failed"
and print (null) for the "Commit:" field, since the commit doesn't get
initialized properly.
| -rw-r--r-- | common/flatpak-dir.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/common/flatpak-dir.c b/common/flatpak-dir.c index 492f1bcb..fabfccc9 100644 --- a/common/flatpak-dir.c +++ b/common/flatpak-dir.c @@ -991,14 +991,14 @@ flatpak_remote_state_load_ref_commit (FlatpakRemoteState *self, /* First try local availability */ if (ostree_repo_load_commit (dir->repo, commit, &commit_data, NULL, NULL)) - return g_steal_pointer (&commit_data); + goto out; for (int i = 0; i < self->sideload_repos->len; i++) { FlatpakSideloadState *ss = g_ptr_array_index (self->sideload_repos, i); if (ostree_repo_load_commit (ss->repo, commit, &commit_data, NULL, NULL)) - return g_steal_pointer (&commit_data); + goto out; } if (flatpak_dir_get_remote_oci (dir, self->remote_name)) @@ -1008,6 +1008,7 @@ flatpak_remote_state_load_ref_commit (FlatpakRemoteState *self, commit_data = flatpak_remote_state_fetch_commit_object (self, dir, ref, commit, token, cancellable, error); +out: if (out_commit) *out_commit = g_steal_pointer (&commit); |
