summaryrefslogtreecommitdiff
path: root/src/libostree/ostree-repo-commit.c
diff options
context:
space:
mode:
authorJonathan Lebon <jonathan@jlebon.com>2021-11-26 10:55:15 -0500
committerGitHub <noreply@github.com>2021-11-26 10:55:15 -0500
commit267ca93da28e00adb3f961d208821bba4644a2d4 (patch)
treeabaa8272efd03a30f9735945732d052c7394a24a /src/libostree/ostree-repo-commit.c
parent2dc6ec70ec02afe2ffc5af511f40fa71d667dadd (diff)
parentcefc1d78544f90ffa0d665f823ef8263aec64fe9 (diff)
downloadostree-267ca93da28e00adb3f961d208821bba4644a2d4.tar.gz
Merge pull request #2490 from lucab/ups/static-fixes
Diffstat (limited to 'src/libostree/ostree-repo-commit.c')
-rw-r--r--src/libostree/ostree-repo-commit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libostree/ostree-repo-commit.c b/src/libostree/ostree-repo-commit.c
index 8ac963e7..0e830a6f 100644
--- a/src/libostree/ostree-repo-commit.c
+++ b/src/libostree/ostree-repo-commit.c
@@ -1683,8 +1683,8 @@ ostree_repo_prepare_transaction (OstreeRepo *self,
/* Set up to abort the transaction if we return early from this function.
* This needs to be manually built here due to a circular dependency. */
g_autoptr(OstreeRepoAutoTransaction) txn = g_malloc(sizeof(OstreeRepoAutoTransaction));
+ g_assert (txn != NULL);
txn->repo = self;
- (void) txn; /* Add use to silence static analysis */
memset (&self->txn.stats, 0, sizeof (OstreeRepoTransactionStats));