[ASAN] sysroot: Squash a leak in lockfile acquisition

I installed `parallel` in my dev container, which got me
the sysroot locking tests, which caught this leak when
built with ASAN.

Closes: #623
Approved by: jlebon
This commit is contained in:
Colin Walters 2016-12-08 10:01:35 -05:00 committed by Atomic Bot
parent 7f2830cb4e
commit 58e318d678
1 changed files with 2 additions and 2 deletions

View File

@ -1323,7 +1323,7 @@ ostree_sysroot_try_lock (OstreeSysroot *self,
GError **error)
{
gboolean ret = FALSE;
GError *local_error = NULL;
g_autoptr(GError) local_error = NULL;
if (!ensure_sysroot_fd (self, error))
goto out;
@ -1338,7 +1338,7 @@ ostree_sysroot_try_lock (OstreeSysroot *self,
}
else
{
g_propagate_error (error, local_error);
g_propagate_error (error, g_steal_pointer (&local_error));
goto out;
}
}