summaryrefslogtreecommitdiff
path: root/bareos/ce3339d28623b8bb771e5e0aa139168df5963c4b.patch
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2023-01-04 22:45:33 +0100
committerErich Eckner <git@eckner.net>2023-01-04 22:58:48 +0100
commit8943985b87586d5c563b8d3327ea79e4e0e54cbb (patch)
tree7c7dfa7ae523f6ee1a53bdac42955ed76fe3e823 /bareos/ce3339d28623b8bb771e5e0aa139168df5963c4b.patch
parentd4a36018f5158371843a670a34647b9a7e6d2eb2 (diff)
downloadarchlinuxewe-8943985b87586d5c563b8d3327ea79e4e0e54cbb.tar.xz
bareosbareos: 21.1.2-20 -> 22.0.1-1
Diffstat (limited to 'bareos/ce3339d28623b8bb771e5e0aa139168df5963c4b.patch')
-rw-r--r--bareos/ce3339d28623b8bb771e5e0aa139168df5963c4b.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/bareos/ce3339d28623b8bb771e5e0aa139168df5963c4b.patch b/bareos/ce3339d28623b8bb771e5e0aa139168df5963c4b.patch
deleted file mode 100644
index ca899fd0d..000000000
--- a/bareos/ce3339d28623b8bb771e5e0aa139168df5963c4b.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From ce3339d28623b8bb771e5e0aa139168df5963c4b Mon Sep 17 00:00:00 2001
-From: Andreas Rogge <andreas.rogge@bareos.com>
-Date: Wed, 2 Feb 2022 19:41:25 +0100
-Subject: [PATCH] lib: fix use-after-free in timer_thread
-
----
- core/src/lib/timer_thread.cc | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/core/src/lib/timer_thread.cc b/core/src/lib/timer_thread.cc
-index 7ec8021989..1624ddd4f0 100644
---- a/core/src/lib/timer_thread.cc
-+++ b/core/src/lib/timer_thread.cc
-@@ -2,7 +2,7 @@
- BAREOSĀ® - Backup Archiving REcovery Open Sourced
-
- Copyright (C) 2002-2011 Free Software Foundation Europe e.V.
-- Copyright (C) 2019-2019 Bareos GmbH & Co. KG
-+ Copyright (C) 2019-2022 Bareos GmbH & Co. KG
-
- This program is Free Software; you can redistribute it and/or
- modify it under the terms of version three of the GNU Affero General Public
-@@ -204,6 +204,7 @@ static bool RunOneItem(TimerThread::Timer* p,
- = std::chrono::steady_clock::now();
-
- bool remove_from_list = false;
-+ next_timer_run = min(p->scheduled_run_timepoint, next_timer_run);
- if (p->is_active && last_timer_run_timepoint > p->scheduled_run_timepoint) {
- LogMessage(p);
- p->user_callback(p);
-@@ -215,7 +216,6 @@ static bool RunOneItem(TimerThread::Timer* p,
- p->scheduled_run_timepoint = last_timer_run_timepoint + p->interval;
- }
- }
-- next_timer_run = min(p->scheduled_run_timepoint, next_timer_run);
- return remove_from_list;
- }
-