forked from lijiext/lammps
Correct next_line in PotentialFileReader
This commit is contained in:
parent
6d339c8b03
commit
68e2c0bca8
|
@ -51,17 +51,10 @@ char *PotentialFileReader::next_line(int nparams) {
|
|||
int n = 0;
|
||||
int nwords = 0;
|
||||
|
||||
do {
|
||||
char *ptr = fgets(&line[n], MAXLINE - n, fp);
|
||||
char *ptr = fgets(line, MAXLINE, fp);
|
||||
|
||||
if (ptr == nullptr) {
|
||||
// EOF
|
||||
if (nwords > 0 && nwords < nparams) {
|
||||
char str[128];
|
||||
snprintf(str, 128, "Incorrect format in %s potential file", potential_name.c_str());
|
||||
error->one(FLERR, str);
|
||||
}
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@ -70,12 +63,35 @@ char *PotentialFileReader::next_line(int nparams) {
|
|||
|
||||
nwords = utils::count_words(line);
|
||||
|
||||
// skip line if blank
|
||||
if (nwords == 0)
|
||||
continue;
|
||||
if (nwords > 0) {
|
||||
n = strlen(line);
|
||||
}
|
||||
|
||||
n = strlen(line) + 1;
|
||||
} while (nwords < nparams);
|
||||
while(nwords < nparams) {
|
||||
char *ptr = fgets(&line[n], MAXLINE - n, fp);
|
||||
|
||||
if (ptr == nullptr) {
|
||||
// EOF
|
||||
if (nwords > 0 && nwords < nparams) {
|
||||
char str[128];
|
||||
snprintf(str, 128, "Incorrect format in %s potential file! %d/%d parameters", potential_name.c_str(), nwords, nparams);
|
||||
error->one(FLERR, str);
|
||||
}
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
||||
// strip comment
|
||||
if ((ptr = strchr(line, '#'))) *ptr = '\0';
|
||||
|
||||
nwords = utils::count_words(line);
|
||||
|
||||
// skip line if blank
|
||||
if (nwords > 0) {
|
||||
n = strlen(line);
|
||||
}
|
||||
}
|
||||
|
||||
return line;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue