Protect setting G.result_dict with G.progress_lock

This commit is contained in:
2018-08-14 13:44:07 +02:00
parent c915a486cb
commit 7ecc2cd22b

View File

@@ -259,8 +259,7 @@ def benchmark_thread(ctx):
with G.progress_lock:
if G.cancel:
return
G.result_dict = result
G.result_dict = result
################################################################################