From 54008798efcc9646f622f6b052ecd83281d57cda Mon Sep 17 00:00:00 2001 From: Judd Vinet Date: Fri, 14 Jul 2006 23:15:07 +0000 Subject: Patch from FW: Better control over CTRL-C interruptions -- do not leave the DB in an inconsistent state --- lib/libalpm/alpm.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib/libalpm/alpm.c') diff --git a/lib/libalpm/alpm.c b/lib/libalpm/alpm.c index cffbfc46..96d8536e 100644 --- a/lib/libalpm/alpm.c +++ b/lib/libalpm/alpm.c @@ -799,6 +799,14 @@ int alpm_trans_release() ASSERT(trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1)); ASSERT(trans->state != STATE_IDLE, RET_ERR(PM_ERR_TRANS_NULL, -1)); + /* during a commit do not interrupt immediately, just after a target */ + if(trans->state == STATE_COMMITTING || trans->state == STATE_INTERRUPTED) { + if(trans->state == STATE_COMMITTING) { + trans->state = STATE_INTERRUPTED; + } + return(-1); + } + FREETRANS(handle->trans); /* unlock db */ -- cgit v1.2.3-24-g4f1b