Skip to content
Snippets Groups Projects
Commit 617ca4e0 authored by Richard Berger's avatar Richard Berger
Browse files

Fixes coverity issue CID 179436

parent 06a4f47a
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,12 @@ enum{NONE,INT,DOUBLE,STRING,PTR}; ...@@ -35,6 +35,12 @@ enum{NONE,INT,DOUBLE,STRING,PTR};
PythonImpl::PythonImpl(LAMMPS *lmp) : Pointers(lmp) PythonImpl::PythonImpl(LAMMPS *lmp) : Pointers(lmp)
{ {
ninput = noutput = 0;
istr = NULL;
ostr = NULL;
format = NULL;
length_longstr = 0;
// pfuncs stores interface info for each Python function // pfuncs stores interface info for each Python function
nfunc = 0; nfunc = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment