Kaydet (Commit) 793b69fe authored tarafından Caolán McNamara's avatar Caolán McNamara

don't worry about dangling timers at fuzzer exit

Change-Id: I9e18257f7e6e0438c6ce2801c0c2f8885b060870
Reviewed-on: https://gerrit.libreoffice.org/45214Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst d26ebaa2
......@@ -23,6 +23,7 @@
#include <svdata.hxx>
#include <tools/time.hxx>
#include <unotools/configmgr.hxx>
#include <vcl/scheduler.hxx>
#include <vcl/idle.hxx>
#include <saltimer.hxx>
......@@ -575,7 +576,7 @@ Task::~Task() COVERITY_NOEXCEPT_FALSE
mpSchedulerData->mpTask = nullptr;
}
else
assert( nullptr == mpSchedulerData );
assert(nullptr == mpSchedulerData || utl::ConfigManager::IsFuzzing());
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment