Fixed bug in the Crashmail/CrashEcho config parser.
This commit is contained in:
parent
26caf9560e
commit
3b6ca67214
@ -12,6 +12,9 @@ ______________________________________________________________________
|
|||||||
Notes for GoldED+ 1.1.5, /snapshot/
|
Notes for GoldED+ 1.1.5, /snapshot/
|
||||||
______________________________________________________________________
|
______________________________________________________________________
|
||||||
|
|
||||||
|
- Fixed small bug in the Crahmail/Crashecho parser when the last
|
||||||
|
address may left unread.
|
||||||
|
|
||||||
- Fixed various types of SMB corruption, especially on changing
|
- Fixed various types of SMB corruption, especially on changing
|
||||||
message or updating attrbutes.
|
message or updating attrbutes.
|
||||||
|
|
||||||
|
@ -230,7 +230,8 @@ void gareafile::ReadCrashmailCfg(const char* file) {
|
|||||||
if(not unconfirmed) {
|
if(not unconfirmed) {
|
||||||
AddNewArea(aa);
|
AddNewArea(aa);
|
||||||
}
|
}
|
||||||
} else if(address[0]) {
|
}
|
||||||
|
if(address[0]) {
|
||||||
strxmerge(tmp, 100, address, "@", domain, NULL);
|
strxmerge(tmp, 100, address, "@", domain, NULL);
|
||||||
CfgAddress(tmp);
|
CfgAddress(tmp);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user