From 76166cb52eae8b2637503e5cac9743b283d429be Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Thu, 18 Aug 2016 10:37:11 -0400 Subject: [PATCH] pull_with_options: fix stray return FALSE Closes: #465 Approved by: cgwalters --- src/libostree/ostree-repo-pull.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libostree/ostree-repo-pull.c b/src/libostree/ostree-repo-pull.c index 43ec2ff6..f990c6b2 100644 --- a/src/libostree/ostree-repo-pull.c +++ b/src/libostree/ostree-repo-pull.c @@ -2676,7 +2676,7 @@ ostree_repo_pull_with_options (OstreeRepo *self, if (G_UNLIKELY (errno != EEXIST)) { glnx_set_error_from_errno (error); - return FALSE; + goto out; } }