silence warnings from coverity scan

This commit is contained in:
Axel Kohlmeyer
2022-03-11 04:27:42 -05:00
parent 9b989b1860
commit 45b1213795
2 changed files with 5 additions and 5 deletions

View File

@ -55,9 +55,9 @@ static const char cite_compute_stress_cartesian[] =
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
ComputeStressCartesian::ComputeStressCartesian(LAMMPS *lmp, int narg, char **arg) :
Compute(lmp, narg, arg), dens(NULL), pkxx(NULL), pkyy(NULL), pkzz(NULL), pcxx(NULL), pcyy(NULL),
pczz(NULL), tdens(NULL), tpkxx(NULL), tpkyy(NULL), tpkzz(NULL), tpcxx(NULL), tpcyy(NULL),
tpczz(NULL)
Compute(lmp, narg, arg), dens(nullptr), pkxx(nullptr), pkyy(nullptr), pkzz(nullptr),
pcxx(nullptr), pcyy(nullptr), pczz(nullptr), tdens(nullptr), tpkxx(nullptr), tpkyy(nullptr),
tpkzz(nullptr), tpcxx(nullptr), tpcyy(nullptr), tpczz(nullptr), list(nullptr)
{
if (lmp->citeme) lmp->citeme->add(cite_compute_stress_cartesian);
@ -175,7 +175,7 @@ ComputeStressCartesian::~ComputeStressCartesian()
void ComputeStressCartesian::init()
{
if (force->pair == NULL)
if (force->pair == nullptr)
error->all(FLERR, "No pair style is defined for compute stress/cartesian");
if (force->pair->single_enable == 0)
error->all(FLERR, "Pair style does not support compute stress/cartesian");

View File

@ -61,7 +61,7 @@ static const char cite_compute_stress_sphere[] =
ComputeStressSpherical::ComputeStressSpherical(LAMMPS *lmp, int narg, char **arg) :
Compute(lmp, narg, arg), dens(nullptr), pkrr(nullptr), pktt(nullptr), pkpp(nullptr),
pcrr(nullptr), pctt(nullptr), pcpp(nullptr), tdens(nullptr), tpkrr(nullptr), tpktt(nullptr),
tpkpp(nullptr), tpcrr(nullptr), tpctt(nullptr), tpcpp(nullptr)
tpkpp(nullptr), tpcrr(nullptr), tpctt(nullptr), tpcpp(nullptr), list(nullptr)
{
if (lmp->citeme) lmp->citeme->add(cite_compute_stress_sphere);