summaryrefslogtreecommitdiff
path: root/patches/www-client/chromium-72.0.3626.96/use-after-move.patch
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2019-02-24 22:49:16 -0700
committerKenny Ballou <kballou@devnulllabs.io>2019-02-26 22:13:37 -0700
commit59201188169f51645159ebb2cf0cd52619915c16 (patch)
treee79e696139305b3e89b8ed8101ded2cbe599394e /patches/www-client/chromium-72.0.3626.96/use-after-move.patch
parent1c74e95fd91718007da08ce6e7d80e608461119d (diff)
downloadgentoo.patches-59201188169f51645159ebb2cf0cd52619915c16.tar.gz
gentoo.patches-59201188169f51645159ebb2cf0cd52619915c16.tar.xz
Add chromium-72 patches from debian project
Collect a number of patches, specifically, `fixes` and `gcc6` patches for compiling chromium-72. [0]: https://salsa.debian.org/chromium-team/chromium/tree/master/debian/patches Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'patches/www-client/chromium-72.0.3626.96/use-after-move.patch')
-rw-r--r--patches/www-client/chromium-72.0.3626.96/use-after-move.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/patches/www-client/chromium-72.0.3626.96/use-after-move.patch b/patches/www-client/chromium-72.0.3626.96/use-after-move.patch
new file mode 100644
index 0000000..a72a4f2
--- /dev/null
+++ b/patches/www-client/chromium-72.0.3626.96/use-after-move.patch
@@ -0,0 +1,29 @@
+description: gcc 6 does not support using a unique_ptr after its been moved
+author: Michael Gilbert <mgilbert@debian.org>
+
+--- a/services/resource_coordinator/coordination_unit/coordination_unit_base.cc
++++ b/services/resource_coordinator/coordination_unit/coordination_unit_base.cc
+@@ -81,7 +81,8 @@ void CoordinationUnitBase::SetProperty(m
+ // static
+ CoordinationUnitBase* CoordinationUnitBase::PassOwnershipToGraph(
+ std::unique_ptr<CoordinationUnitBase> new_cu) {
+- return new_cu->graph()->AddNewCoordinationUnit(std::move(new_cu));
++ CoordinationUnitGraph* graph = new_cu->graph();
++ return graph->AddNewCoordinationUnit(std::move(new_cu));
+ }
+
+ } // namespace resource_coordinator
+
+--- a/base/task/sequence_manager/task_queue.cc
++++ b/base/task/sequence_manager/task_queue.cc
+@@ -50,7 +50,9 @@ TaskQueue::~TaskQueue() {
+ // If we've not been unregistered then this must occur on the main thread.
+ DCHECK_CALLED_ON_VALID_THREAD(associated_thread_->thread_checker);
+ impl_->SetOnNextWakeUpChangedCallback(RepeatingCallback<void(TimeTicks)>());
+- impl_->sequence_manager()->ShutdownTaskQueueGracefully(TakeTaskQueueImpl());
++ internal::SequenceManagerImpl* sequence_manager = impl_->sequence_manager();
++ if (sequence_manager)
++ sequence_manager->ShutdownTaskQueueGracefully(TakeTaskQueueImpl());
+ }
+
+ TaskQueue::TaskTiming::TaskTiming(bool has_wall_time, bool has_thread_time)