From cd65d44d95078603838874a70a3c5b6fb77316ee Mon Sep 17 00:00:00 2001 From: Anders Hafreager Date: Mon, 7 Nov 2016 16:15:39 +0100 Subject: [PATCH] Initialize pointers in ASPHERE --- src/ASPHERE/compute_temp_asphere.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ASPHERE/compute_temp_asphere.cpp b/src/ASPHERE/compute_temp_asphere.cpp index f3db5dea92..029b76cb27 100644 --- a/src/ASPHERE/compute_temp_asphere.cpp +++ b/src/ASPHERE/compute_temp_asphere.cpp @@ -38,7 +38,8 @@ enum{ROTATE,ALL}; /* ---------------------------------------------------------------------- */ ComputeTempAsphere::ComputeTempAsphere(LAMMPS *lmp, int narg, char **arg) : - Compute(lmp, narg, arg) + Compute(lmp, narg, arg), + id_bias(NULL), tbias(NULL), avec(NULL) { if (narg < 3) error->all(FLERR,"Illegal compute temp/asphere command");