Skip to content

Commit 41ca638

Browse files
fix out of bounds issue
Patch: Martin Balik Signed-off-by: Roger Meier <r.meier@siemens.com>
1 parent 3639338 commit 41ca638

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ int main(int argc, char** argv) {
201201
for (property_tree::ptree::const_iterator it = pt.begin(); it != pt.end(); it++) {
202202
// ignore config section
203203
if(it->first == "proxyme") {
204-
it++;
204+
continue;
205205
}
206206

207207
string template_file = pt.get<string> (it->first + ".template");

0 commit comments

Comments
 (0)