From: Jonathan Lebon Date: Thu, 13 Apr 2023 21:22:39 +0000 (-0400) Subject: lib/sysroot-cleanup: Drop dead code X-Git-Tag: archive/raspbian/2023.7-3+rpi1~1^2~9^2~2^2~8^2~3 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=49eb8c04d547e9cc3cfcca4e0571deedd9f36040;p=ostree.git lib/sysroot-cleanup: Drop dead code We weren't actually using this `stbuf` anywhere. --- diff --git a/src/libostree/ostree-sysroot-cleanup.c b/src/libostree/ostree-sysroot-cleanup.c index 619831d0..d8347f45 100644 --- a/src/libostree/ostree-sysroot-cleanup.c +++ b/src/libostree/ostree-sysroot-cleanup.c @@ -257,13 +257,6 @@ cleanup_old_deployments (OstreeSysroot *self, GCancellable *cancellable, GError **error) { - /* Gather the device/inode of the rootfs, so we can double - * check we won't delete it. - */ - struct stat root_stbuf; - if (!glnx_fstatat (AT_FDCWD, "/", &root_stbuf, 0, error)) - return FALSE; - /* Load all active deployments referenced by bootloader configuration. */ g_autoptr(GHashTable) active_deployment_dirs = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);