Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/emc/ini/inifile.cc
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ bool IniFileContent::processValue(std::string &value, const std::string &path, u
std::string realstr;
uint32_t hexval;
size_t pos;
char quote;
char quote = 0;
enum { ST_START, ST_COLLECT } state = ST_START;
for(pos = 0; pos < value.size(); pos++) {
char ch = value[pos];
Expand Down
Loading