Skip to content

Commit

Permalink
Fixing PdFileParser iterator not being initialized when using the
Browse files Browse the repository at this point in the history
constructor PdFilerParser::PdFileParser(string aString).
  • Loading branch information
Kyew committed Aug 18, 2014
1 parent f943d15 commit 4738f3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/PdFileParser.cpp
Expand Up @@ -64,7 +64,8 @@ PdFileParser::PdFileParser(string aString) {
isDone = true;
} else {
stringDesc = aString;
nextLine(); // read the first line
pos = 0;
nextLine(); // read the first line
isDone = false;
}
}
Expand Down

0 comments on commit 4738f3d

Please sign in to comment.