From 1ff75eaba2bf0eb50448a56a1fd08215612d455a Mon Sep 17 00:00:00 2001 From: Anders Hafreager <andershaf@gmail.com> Date: Mon, 7 Nov 2016 17:15:48 +0100 Subject: [PATCH] Initialized pointers in MISC and MOLECULE --- src/MISC/compute_ti.cpp | 3 ++- src/MISC/dump_xtc.cpp | 3 ++- src/MISC/fix_deposit.cpp | 4 +++- src/MISC/fix_efield.cpp | 3 ++- src/MISC/fix_evaporate.cpp | 2 +- src/MISC/fix_gld.cpp | 3 ++- src/MISC/fix_orient_bcc.cpp | 3 ++- src/MISC/fix_orient_fcc.cpp | 3 ++- src/MISC/fix_thermal_conductivity.cpp | 3 ++- src/MISC/fix_ttm.cpp | 7 ++++++- src/MISC/fix_viscosity.cpp | 3 ++- src/MOLECULE/fix_cmap.cpp | 5 ++++- 12 files changed, 30 insertions(+), 12 deletions(-) diff --git a/src/MISC/compute_ti.cpp b/src/MISC/compute_ti.cpp index eca136c935..9f1b2898bb 100644 --- a/src/MISC/compute_ti.cpp +++ b/src/MISC/compute_ti.cpp @@ -36,7 +36,8 @@ enum{PAIR,TAIL,KSPACE}; /* ---------------------------------------------------------------------- */ ComputeTI::ComputeTI(LAMMPS *lmp, int narg, char **arg) : - Compute(lmp, narg, arg) + Compute(lmp, narg, arg), nterms(0), which(NULL), ivar1(NULL), ivar2(NULL), + ilo(NULL), ihi(NULL), var1(NULL), var2(NULL), pptr(NULL), pstyle(NULL) { if (narg < 4) error->all(FLERR,"Illegal compute ti command"); diff --git a/src/MISC/dump_xtc.cpp b/src/MISC/dump_xtc.cpp index cd68e969af..6a89312bcf 100644 --- a/src/MISC/dump_xtc.cpp +++ b/src/MISC/dump_xtc.cpp @@ -53,7 +53,8 @@ int xdr3dfcoord(XDR *, float *, int *, float *); /* ---------------------------------------------------------------------- */ -DumpXTC::DumpXTC(LAMMPS *lmp, int narg, char **arg) : Dump(lmp, narg, arg) +DumpXTC::DumpXTC(LAMMPS *lmp, int narg, char **arg) : Dump(lmp, narg, arg), + coords(NULL) { if (narg != 5) error->all(FLERR,"Illegal dump xtc command"); if (binary || compressed || multifile || multiproc) diff --git a/src/MISC/fix_deposit.cpp b/src/MISC/fix_deposit.cpp index 4076209b5a..d841482f8e 100644 --- a/src/MISC/fix_deposit.cpp +++ b/src/MISC/fix_deposit.cpp @@ -45,7 +45,9 @@ enum{DIST_UNIFORM,DIST_GAUSSIAN}; /* ---------------------------------------------------------------------- */ FixDeposit::FixDeposit(LAMMPS *lmp, int narg, char **arg) : - Fix(lmp, narg, arg) + Fix(lmp, narg, arg), idregion(NULL), idrigid(NULL), + idshake(NULL), onemols(NULL), molfrac(NULL), coords(NULL), imageflags(NULL), + fixrigid(NULL), fixshake(NULL), random(NULL) { if (narg < 7) error->all(FLERR,"Illegal fix deposit command"); diff --git a/src/MISC/fix_efield.cpp b/src/MISC/fix_efield.cpp index 85af46ed3b..8a6b7937b5 100644 --- a/src/MISC/fix_efield.cpp +++ b/src/MISC/fix_efield.cpp @@ -41,7 +41,8 @@ enum{NONE,CONSTANT,EQUAL,ATOM}; /* ---------------------------------------------------------------------- */ FixEfield::FixEfield(LAMMPS *lmp, int narg, char **arg) : - Fix(lmp, narg, arg) + Fix(lmp, narg, arg), xstr(NULL), ystr(NULL), zstr(NULL), + estr(NULL), idregion(NULL), efield(NULL) { if (narg < 6) error->all(FLERR,"Illegal fix efield command"); diff --git a/src/MISC/fix_evaporate.cpp b/src/MISC/fix_evaporate.cpp index 42f3b844db..54d1090892 100644 --- a/src/MISC/fix_evaporate.cpp +++ b/src/MISC/fix_evaporate.cpp @@ -35,7 +35,7 @@ using namespace FixConst; /* ---------------------------------------------------------------------- */ FixEvaporate::FixEvaporate(LAMMPS *lmp, int narg, char **arg) : - Fix(lmp, narg, arg) + Fix(lmp, narg, arg), idregion(NULL), list(NULL), mark(NULL), random(NULL) { if (narg < 7) error->all(FLERR,"Illegal fix evaporate command"); diff --git a/src/MISC/fix_gld.cpp b/src/MISC/fix_gld.cpp index 0266d2501c..945ddb531b 100644 --- a/src/MISC/fix_gld.cpp +++ b/src/MISC/fix_gld.cpp @@ -43,7 +43,8 @@ using namespace FixConst; ------------------------------------------------------------------------- */ FixGLD::FixGLD(LAMMPS *lmp, int narg, char **arg) : - Fix(lmp, narg, arg) + Fix(lmp, narg, arg), + step_respa(NULL), prony_c(NULL), prony_tau(NULL), s_gld(NULL), random(NULL) { int narg_min = 8; // Check to make sure we have the minimal number of inputs diff --git a/src/MISC/fix_orient_bcc.cpp b/src/MISC/fix_orient_bcc.cpp index 9d369a2af0..87bdc55535 100644 --- a/src/MISC/fix_orient_bcc.cpp +++ b/src/MISC/fix_orient_bcc.cpp @@ -57,7 +57,8 @@ static const char cite_fix_orient_bcc[] = /* ---------------------------------------------------------------------- */ FixOrientBCC::FixOrientBCC(LAMMPS *lmp, int narg, char **arg) : - Fix(lmp, narg, arg) + Fix(lmp, narg, arg), + xifilename(NULL), chifilename(NULL), order(NULL), nbr(NULL), sort(NULL), list(NULL) { if (lmp->citeme) lmp->citeme->add(cite_fix_orient_bcc); diff --git a/src/MISC/fix_orient_fcc.cpp b/src/MISC/fix_orient_fcc.cpp index 320da0da47..23b25b5cd0 100644 --- a/src/MISC/fix_orient_fcc.cpp +++ b/src/MISC/fix_orient_fcc.cpp @@ -54,7 +54,8 @@ static const char cite_fix_orient_fcc[] = /* ---------------------------------------------------------------------- */ FixOrientFCC::FixOrientFCC(LAMMPS *lmp, int narg, char **arg) : - Fix(lmp, narg, arg) + Fix(lmp, narg, arg), + xifilename(NULL), chifilename(NULL), order(NULL), nbr(NULL), sort(NULL), list(NULL) { if (lmp->citeme) lmp->citeme->add(cite_fix_orient_fcc); diff --git a/src/MISC/fix_thermal_conductivity.cpp b/src/MISC/fix_thermal_conductivity.cpp index b465188fbb..b9e70e9c00 100644 --- a/src/MISC/fix_thermal_conductivity.cpp +++ b/src/MISC/fix_thermal_conductivity.cpp @@ -36,7 +36,8 @@ using namespace FixConst; FixThermalConductivity::FixThermalConductivity(LAMMPS *lmp, int narg, char **arg) : - Fix(lmp, narg, arg) + Fix(lmp, narg, arg), + index_lo(NULL), index_hi(NULL), ke_lo(NULL), ke_hi(NULL) { if (narg < 6) error->all(FLERR,"Illegal fix thermal/conductivity command"); diff --git a/src/MISC/fix_ttm.cpp b/src/MISC/fix_ttm.cpp index 1461a0707d..00e7803f8a 100644 --- a/src/MISC/fix_ttm.cpp +++ b/src/MISC/fix_ttm.cpp @@ -40,7 +40,12 @@ using namespace FixConst; /* ---------------------------------------------------------------------- */ FixTTM::FixTTM(LAMMPS *lmp, int narg, char **arg) : - Fix(lmp, narg, arg) + Fix(lmp, narg, arg), + random(NULL), fp(NULL), fpr(NULL), nsum(NULL), nsum_all(NULL), + T_initial_set(NULL), gfactor1(NULL), gfactor2(NULL), ratio(NULL), + flangevin(NULL), T_electron(NULL), T_electron_old(NULL), sum_vsq(NULL), + sum_mass_vsq(NULL), sum_vsq_all(NULL), sum_mass_vsq_all(NULL), + net_energy_transfer(NULL), net_energy_transfer_all(NULL) { if (narg < 15) error->all(FLERR,"Illegal fix ttm command"); diff --git a/src/MISC/fix_viscosity.cpp b/src/MISC/fix_viscosity.cpp index 2b8807c605..3f6d5e33d1 100644 --- a/src/MISC/fix_viscosity.cpp +++ b/src/MISC/fix_viscosity.cpp @@ -37,7 +37,8 @@ using namespace FixConst; /* ---------------------------------------------------------------------- */ FixViscosity::FixViscosity(LAMMPS *lmp, int narg, char **arg) : - Fix(lmp, narg, arg) + Fix(lmp, narg, arg), + pos_index(NULL), neg_index(NULL), pos_delta(NULL), neg_delta(NULL) { if (narg < 7) error->all(FLERR,"Illegal fix viscosity command"); diff --git a/src/MOLECULE/fix_cmap.cpp b/src/MOLECULE/fix_cmap.cpp index 8d8abe2ac0..eedb9bf554 100644 --- a/src/MOLECULE/fix_cmap.cpp +++ b/src/MOLECULE/fix_cmap.cpp @@ -62,7 +62,10 @@ using namespace MathConst; /* ---------------------------------------------------------------------- */ -FixCMAP::FixCMAP(LAMMPS *lmp, int narg, char **arg) : Fix(lmp, narg, arg) +FixCMAP::FixCMAP(LAMMPS *lmp, int narg, char **arg) : Fix(lmp, narg, arg), + crosstermlist(NULL), num_crossterm(NULL), crossterm_type(NULL), crossterm_atom1(NULL), + crossterm_atom2(NULL), crossterm_atom3(NULL), crossterm_atom4(NULL), crossterm_atom5(NULL), + g_axis(NULL), cmapgrid(NULL), d1cmapgrid(NULL), d2cmapgrid(NULL), d12cmapgrid(NULL) { if (narg != 4) error->all(FLERR,"Illegal fix cmap command"); -- GitLab