void-packages/srcpkgs/xbps/patches/0005-xbps-rindex-8-fix-crash-in-r-when-a-pkg-cannot-be-re.patch

66 lines
2.1 KiB
Diff

From 82a8263f376a6f967e97fe7e5d1135a8e96b425a Mon Sep 17 00:00:00 2001
From: Juan RP <xtraeme@gmail.com>
Date: Wed, 16 Jan 2013 16:25:29 +0100
Subject: [PATCH] xbps-rindex(8): fix crash in -r when a pkg cannot be removed.
---
NEWS | 5 ++++-
bin/xbps-rindex/remove-obsoletes.c | 19 ++++++++-----------
2 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/bin/xbps-rindex/remove-obsoletes.c b/bin/xbps-rindex/remove-obsoletes.c
index 96c0c98..426340f 100644
--- bin/xbps-rindex/remove-obsoletes.c
+++ bin/xbps-rindex/remove-obsoletes.c
@@ -56,8 +56,9 @@ remove_pkg(const char *repodir, const char *arch, const char *file)
if (remove(filepath) == -1) {
if (errno != ENOENT) {
rv = errno;
- xbps_error_printf("failed to remove old binpkg "
- "`%s': %s\n", file, strerror(rv));
+ fprintf(stderr, "xbps-rindex: failed to remove "
+ "package `%s': %s\n", file,
+ strerror(rv));
free(filepath);
return rv;
}
@@ -68,8 +69,9 @@ remove_pkg(const char *repodir, const char *arch, const char *file)
if (remove(filepath) == -1) {
if (errno != ENOENT) {
rv = errno;
- xbps_error_printf("failed to remove old binpkg "
- "`%s': %s\n", file, strerror(rv));
+ fprintf(stderr, "xbps-rindex: failed to remove "
+ "package `%s': %s\n", file,
+ strerror(rv));
free(filepath);
return rv;
}
@@ -95,11 +97,8 @@ cleaner_thread(void *arg)
if (pkgd == NULL) {
rv = remove_pkg(thd->ri->uri, arch, binpkg);
if (rv != 0) {
- fprintf(stderr, "xbps-rindex: failed to remove "
- "package `%s': %s\n", binpkg,
- strerror(rv));
prop_object_release(pkgd);
- break;
+ continue;
}
printf("Removed broken package `%s'.\n", binpkg);
}
@@ -118,10 +117,8 @@ cleaner_thread(void *arg)
if (!xbps_rindex_get_pkg(thd->ri, pkgver)) {
rv = remove_pkg(thd->ri->uri, arch, binpkg);
if (rv != 0) {
- fprintf(stderr, "xbps-rindex: failed to remove "
- "package `%s': %s\n", binpkg,
- strerror(rv));
prop_object_release(pkgd);
+ continue;
}
printf("Removed obsolete package `%s'.\n", binpkg);
}
--
1.8.1.1