summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Ochotnicky <sochotnicky@gentoo.org>2010-04-28 10:23:15 +0200
committerStanislav Ochotnicky <sochotnicky@gentoo.org>2010-04-28 10:23:15 +0200
commit82405c80f6984976de92c1368c91ec1cae8f0858 (patch)
tree73abaafecba7c59bb4b59c0c0b477190af9a7e96 /app-arch/rpm/files/rpm-4.4.7-qa-implicit-function-to-pointer.patch
parentapp-arch/rpm: Fix bug 315771 (build failure with custom CFLAGS) (diff)
downloadsochotnicky-82405c80f6984976de92c1368c91ec1cae8f0858.tar.gz
sochotnicky-82405c80f6984976de92c1368c91ec1cae8f0858.tar.bz2
sochotnicky-82405c80f6984976de92c1368c91ec1cae8f0858.zip
Added first try at rpm-4.8.0 (removed others)
Diffstat (limited to 'app-arch/rpm/files/rpm-4.4.7-qa-implicit-function-to-pointer.patch')
-rw-r--r--app-arch/rpm/files/rpm-4.4.7-qa-implicit-function-to-pointer.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/app-arch/rpm/files/rpm-4.4.7-qa-implicit-function-to-pointer.patch b/app-arch/rpm/files/rpm-4.4.7-qa-implicit-function-to-pointer.patch
deleted file mode 100644
index 96f7afb..0000000
--- a/app-arch/rpm/files/rpm-4.4.7-qa-implicit-function-to-pointer.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Fix QA Notice: Function `dbiFreeIndexSet' implicitly converted to pointer at transaction.c:2086
-that will almost certainly crash on 64bit architectures.
-Patch provided by Jeff Johnson <n3npq.jbj@gmail.com> on Rpm-devel list.
---- rpm-4.4.7/lib/transaction.c.orig 2007-01-20 15:44:30.275657635 +0100
-+++ rpm-4.4.7/lib/transaction.c 2007-01-20 15:45:09.818625107 +0100
-@@ -2083,7 +2083,7 @@
- shared->isRemoved = (knownBad == ro);
- shared++;
- }
-- matches[i] = dbiFreeIndexSet(matches[i]);
-+ (void) dbiFreeIndexSet(matches[i]);
- }
- numShared = shared - sharedList;
- shared->otherPkg = -1;