diff --git a/src/dump_custom.cpp b/src/dump_custom.cpp index 7dc7e12988..44842619fe 100644 --- a/src/dump_custom.cpp +++ b/src/dump_custom.cpp @@ -55,10 +55,11 @@ enum{INT,DOUBLE,STRING,BIGINT}; // same as in DumpCFG DumpCustom::DumpCustom(LAMMPS *lmp, int narg, char **arg) : Dump(lmp, narg, arg), - idregion(NULL), thresh_array(NULL), thresh_op(NULL), thresh_value(NULL), thresh_last(NULL), - thresh_fix(NULL), thresh_fixID(NULL), thresh_first(NULL), earg(NULL), vtype(NULL), vformat(NULL), - columns(NULL), choose(NULL), dchoose(NULL), clist(NULL), field2index(NULL), argindex(NULL), - id_compute(NULL), compute(NULL), id_fix(NULL), fix(NULL), id_variable(NULL), variable(NULL), + idregion(NULL), thresh_array(NULL), thresh_op(NULL), thresh_value(NULL), + thresh_last(NULL), thresh_fix(NULL), thresh_fixID(NULL), thresh_first(NULL), + earg(NULL), vtype(NULL), vformat(NULL), columns(NULL), choose(NULL), + dchoose(NULL), clist(NULL), field2index(NULL), argindex(NULL), id_compute(NULL), + compute(NULL), id_fix(NULL), fix(NULL), id_variable(NULL), variable(NULL), vbuf(NULL), id_custom(NULL), flag_custom(NULL), typenames(NULL), pack_choice(NULL) { if (narg == 5) error->all(FLERR,"No dump custom arguments specified"); diff --git a/src/dump_image.cpp b/src/dump_image.cpp index bb39f845b5..eedfb89992 100644 --- a/src/dump_image.cpp +++ b/src/dump_image.cpp @@ -49,9 +49,12 @@ enum{NO,YES}; /* ---------------------------------------------------------------------- */ DumpImage::DumpImage(LAMMPS *lmp, int narg, char **arg) : - DumpCustom(lmp, narg, arg), phistr(NULL), czstr(NULL), upzstr(NULL), perspstr(NULL), - bdiamtype(NULL), bcolortype(NULL), avec_line(NULL), avec_tri(NULL), avec_body(NULL), - fixptr(NULL), image(NULL), chooseghost(NULL), bufcopy(NULL) + DumpCustom(lmp, narg, arg), thetastr(NULL), phistr(NULL), cxstr(NULL), + cystr(NULL), czstr(NULL), upxstr(NULL), upystr(NULL), upzstr(NULL), + zoomstr(NULL), perspstr(NULL), diamtype(NULL), diamelement(NULL), + bdiamtype(NULL), colortype(NULL), colorelement(NULL), bcolortype(NULL), + avec_line(NULL), avec_tri(NULL), avec_body(NULL), fixptr(NULL), image(NULL), + chooseghost(NULL), bufcopy(NULL) { if (binary || multiproc) error->all(FLERR,"Invalid dump image filename");