Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #294 from cdk/bug/sdfinfloop
Avoid infinite loop when read SDfile props
  • Loading branch information
egonw committed Apr 2, 2017
2 parents 33c745d + af34a58 commit 407ded9
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -311,6 +311,8 @@ private void readDataBlockInto(IAtomContainer m) throws IOException {
logger.info("fieldName, data: ", dataHeader, ", ", data);
m.setProperty(dataHeader, data);
}
} else {
break;
}
}
}
Expand Down

0 comments on commit 407ded9

Please sign in to comment.