Checker: Access workload element 0 only if there is an element 0.

This commit is contained in:
Gabe Black
2012-02-07 04:44:01 -08:00
parent f2b46fdb85
commit a6246bb047

View File

@@ -84,7 +84,8 @@ CheckerCPU::CheckerCPU(Params *p)
systemPtr = NULL;
workload = p->workload;
// XXX: This is a hack to get this to work some
thread = new SimpleThread(this, /* thread_num */ 0, workload[0], itb, dtb);
thread = new SimpleThread(this, /* thread_num */ 0,
workload.size() ? workload[0] : NULL, itb, dtb);
tc = thread->getTC();
threadContexts.push_back(tc);