Commit 6bebfc4a authored by Peter Eastman's avatar Peter Eastman
Browse files

Fixed a case of uninitialized memory

parent 97840b96
......@@ -98,7 +98,7 @@ struct CudaIntegrationUtilities::ConstraintOrderer : public binary_function<int,
};
CudaIntegrationUtilities::CudaIntegrationUtilities(CudaContext& context, const System& system) : context(context),
randomPos(0) {
randomPos(0), ccmaConvergedMemory(NULL) {
// Create workspace arrays.
lastStepSize = make_double2(0.0, 0.0);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment