summaryrefslogtreecommitdiff
path: root/src/trigproc.c
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2019-01-21 12:58:34 +0100
committerGuillem Jover <guillem@debian.org>2019-01-22 04:13:41 +0100
commitd0be735f160c8f5f69d29c8154b9a6c2879733b9 (patch)
treeab29b2d749223b2a6d45184820e4d8d548995540 /src/trigproc.c
parent725828a60a04d2852b35a760bd584d48b28a6024 (diff)
downloaddpkg-d0be735f160c8f5f69d29c8154b9a6c2879733b9.tar.gz
dpkg: Move trigproc cycle reset inside try-deferred conditional
We should only reset the cycle detection in case we are not bailing out from the processing with an error, otherwise we could come back to this package and detect an artificial trigger cycle.
Diffstat (limited to 'src/trigproc.c')
-rw-r--r--src/trigproc.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/src/trigproc.c b/src/trigproc.c
index 5b7066d8a..3836c90fa 100644
--- a/src/trigproc.c
+++ b/src/trigproc.c
@@ -405,18 +405,17 @@ trigproc(struct pkginfo *pkg, enum trigproc_type type)
enqueue_package(pkg);
return;
} else if (ok == DEP_CHECK_HALT) {
- /* We cannot process this package on this dpkg run,
- * and we can get here repeatedly if this package is
- * required to make progress for other packages. So
- * reset the trigger cycles tracking to avoid bogus
- * cycle detections. */
- trigproc_reset_cycle();
-
- /* When doing opportunistic trigger processing, nothing
- * requires us to be able to make progress; skip the
- * package and silently ignore the error due to
- * unsatisfiable dependencies. */
+ /* When doing opportunistic deferred trigger processing,
+ * nothing requires us to be able to make progress;
+ * skip the package and silently ignore the error due
+ * to unsatisfiable dependencies. And because we can
+ * end up here repeatedly, if this package is required
+ * to make progress for other packages, we need to
+ * reset the trigger cycle tracking to avoid detecting
+ * bogus cycles*/
if (type == TRIGPROC_TRY_DEFERRED) {
+ trigproc_reset_cycle();
+
varbuf_destroy(&depwhynot);
return;
}