gui: IPCPreviewWorker(): Don't allocate mapfunctor on heap

This commit is contained in:
Albert S. 2022-05-29 10:40:46 +02:00
parent f8fe21d50b
commit c867652b6f
1 changed files with 3 additions and 5 deletions

View File

@ -10,13 +10,11 @@ IPCPreviewWorker::IPCPreviewWorker()
void IPCPreviewWorker::start(RenderConfig config, const QVector<RenderTarget> &targets, QLocalSocket *peer) void IPCPreviewWorker::start(RenderConfig config, const QVector<RenderTarget> &targets, QLocalSocket *peer)
{ {
stop(); stop();
/* TODO: memleak */ auto mapFunctor = PreviewGeneratorMapFunctor();
auto mapFunctor = new PreviewGeneratorMapFunctor(); mapFunctor.setRenderConfig(config);
mapFunctor->setRenderConfig(config);
previewWorkerWatcher.setFuture(QtConcurrent::mapped(targets, *mapFunctor)); previewWorkerWatcher.setFuture(QtConcurrent::mapped(targets, mapFunctor));
} }
void IPCPreviewWorker::stop() void IPCPreviewWorker::stop()