Index: PropertiesI.cpp =================================================================== RCS file: /home/cvsroot/ice/src/Ice/PropertiesI.cpp,v retrieving revision 1.100 diff -c -r1.100 PropertiesI.cpp *** PropertiesI.cpp 6 Dec 2004 12:01:34 -0000 1.100 --- PropertiesI.cpp 8 Dec 2004 02:51:51 -0000 *************** *** 265,270 **** --- 265,271 ---- { setProperty("Ice.ProgramName", *q); } + StringSeq tmp; while(q != args.end()) { string s = *q; *************** *** 275,287 **** s += "=1"; } parseLine(s.substr(2)); - args.erase(q); } else { ! ++q; } } loadConfig(); --- 276,289 ---- s += "=1"; } parseLine(s.substr(2)); } else { ! tmp.push_back(s); } + ++q; } + args = tmp; loadConfig();