2017-12-05 11:46:24 +01:00
|
|
|
--- ./lib/rpmdb.c.orig 2017-10-05 10:05:27.459594162 +0000
|
|
|
|
+++ ./lib/rpmdb.c 2017-12-01 14:19:12.361872712 +0000
|
|
|
|
@@ -387,9 +387,11 @@ int rpmdbClose(rpmdb db)
|
2011-05-16 18:07:44 +02:00
|
|
|
{
|
2006-12-19 00:17:44 +01:00
|
|
|
rpmdb * prev, next;
|
|
|
|
int rc = 0;
|
|
|
|
+ int dbmode;
|
|
|
|
|
|
|
|
if (db == NULL)
|
|
|
|
goto exit;
|
|
|
|
+ dbmode = db->db_mode;
|
|
|
|
|
2017-01-19 16:41:55 +01:00
|
|
|
prev = &rpmdbRock;
|
|
|
|
while ((next = *prev) != NULL && next != db)
|
2017-12-05 11:46:24 +01:00
|
|
|
@@ -424,7 +426,7 @@ int rpmdbClose(rpmdb db)
|
2006-12-19 00:17:44 +01:00
|
|
|
|
2011-10-19 18:38:28 +02:00
|
|
|
db = _free(db);
|
2009-08-28 15:54:03 +02:00
|
|
|
|
2011-10-19 18:38:28 +02:00
|
|
|
- if (rpmdbRock == NULL) {
|
|
|
|
+ if (rpmdbRock == NULL && (dbmode & (O_RDWR|O_WRONLY)) != 0) {
|
2017-12-05 11:46:24 +01:00
|
|
|
rpmsqActivate(0);
|
|
|
|
}
|
|
|
|
exit:
|
|
|
|
@@ -505,7 +507,7 @@ static int openDatabase(const char * pre
|
2013-07-12 16:11:14 +02:00
|
|
|
/* Try to ensure db home exists, error out if we can't even create */
|
2011-05-16 18:07:44 +02:00
|
|
|
rc = rpmioMkpath(rpmdbHome(db), 0755, getuid(), getgid());
|
|
|
|
if (rc == 0) {
|
2011-10-19 18:38:28 +02:00
|
|
|
- if (rpmdbRock == NULL) {
|
|
|
|
+ if (rpmdbRock == NULL && (db->db_mode & (O_RDWR|O_WRONLY)) != 0) {
|
2017-12-05 11:46:24 +01:00
|
|
|
rpmsqActivate(1);
|
|
|
|
}
|
|
|
|
|