What if this fixes that crash (#20)

This commit is contained in:
ArsenArsen 2017-07-28 18:39:34 +02:00
parent 58d2e35757
commit e0ee91d4a3
No known key found for this signature in database
GPG Key ID: C631EC9C50708CF4
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ void Worker::queue(WorkerContext *context) {
c->consumer = context->consumer;
c->targetFormat = context->targetFormat;
c->underlyingThing = context;
inst->qqueue.enqueue(c);
inst->qqueue.enqueue(std::move(c));
}
void Worker::init() {