diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2008-01-15 09:42:21 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2008-01-15 09:42:21 -0330 |
commit | a228fa2a1d77272a3534c66519bd20ae915ddffe (patch) | |
tree | cf5276cb643cdb7d9e0d948dbdf4aef771e61d5b /cpp/src | |
parent | Fixed bug 1359 (diff) | |
download | ice-a228fa2a1d77272a3534c66519bd20ae915ddffe.tar.bz2 ice-a228fa2a1d77272a3534c66519bd20ae915ddffe.tar.xz ice-a228fa2a1d77272a3534c66519bd20ae915ddffe.zip |
Bug 2413 - arbitraray config file line limit
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/PropertiesI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/PropertiesI.cpp b/cpp/src/Ice/PropertiesI.cpp index 318ad95bfbd..5ce4195df61 100644 --- a/cpp/src/Ice/PropertiesI.cpp +++ b/cpp/src/Ice/PropertiesI.cpp @@ -291,8 +291,8 @@ Ice::PropertiesI::load(const std::string& file) throw ex; } - char line[1024]; - while(in.getline(line, 1024)) + string line; + while(getline(in, line)) { parseLine(line, _converter); } |