Просмотр исходного кода

dpkg: Call standard_shutdown after invoking the post hooks

The error unwinding is part of the shutdown, and the invoke hooks
machinery might call ohshit, so it should be done at the end when
there's no more error handling in place.
Guillem Jover лет назад: 16
Родитель
Сommit
c32c4bf1d9
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      src/main.c

+ 2 - 2
src/main.c

@@ -721,10 +721,10 @@ int main(int argc, const char *const *argv) {
 
   actionfunction(argv);
 
-  standard_shutdown();
-
   if (is_invoke_action(cipaction->arg))
     run_invoke_hooks(cipaction->olong, post_invoke_hooks);
 
+  standard_shutdown();
+
   return reportbroken_retexitstatus();
 }