Fixed buffer overrun in template parsing.
This commit is contained in:
parent
501d7c1aa8
commit
9702c54802
@ -10,6 +10,7 @@ _____________________________________________________________________________
|
|||||||
‡ ¬¥âª¨ ¤«ï GoldED+ 1.1.5, /snapshot/
|
‡ ¬¥âª¨ ¤«ï GoldED+ 1.1.5, /snapshot/
|
||||||
_____________________________________________________________________________
|
_____________________________________________________________________________
|
||||||
|
|
||||||
|
- Golded+ ¬®£ 㯠áâì ¢® ¢à¥¬ï ¯ àᨣ ⥬¯«¥©â ¨§-§ ¢ë室 § £à ¨æã ¡ãä¥à .
|
||||||
+ <20>®¤¤¥à¦ª ª¥©¢®à¤ 'set' ¢ fidoconfig-¥.
|
+ <20>®¤¤¥à¦ª ª¥©¢®à¤ 'set' ¢ fidoconfig-¥.
|
||||||
- Golded+ ¬®£ 㯠áâì ¢® ¢à¥¬ï ¯ àᨣ fidoconfig- .
|
- Golded+ ¬®£ 㯠áâì ¢® ¢à¥¬ï ¯ àᨣ fidoconfig- .
|
||||||
- ˆá¯à ¢«¥ ¡ £ ¢ á⥪¥ ®âª â । ªâ®à , ¯à¨ ª®â®à®¬ £®«¤¥¤ ¯à®¡®¢ « ¯à®ç¥áâì ¯®
|
- ˆá¯à ¢«¥ ¡ £ ¢ á⥪¥ ®âª â । ªâ®à , ¯à¨ ª®â®à®¬ £®«¤¥¤ ¯à®¡®¢ « ¯à®ç¥áâì ¯®
|
||||||
|
@ -10,6 +10,8 @@ ______________________________________________________________________
|
|||||||
Notes for GoldED+ 1.1.5, /snapshot/
|
Notes for GoldED+ 1.1.5, /snapshot/
|
||||||
______________________________________________________________________
|
______________________________________________________________________
|
||||||
|
|
||||||
|
- Fixed buffer overrun in template parsing.
|
||||||
|
|
||||||
+ Support for keyword 'set' in fidoconfig.
|
+ Support for keyword 'set' in fidoconfig.
|
||||||
|
|
||||||
- Golded+ can crash when parsing fidoconfig.
|
- Golded+ can crash when parsing fidoconfig.
|
||||||
|
@ -62,7 +62,8 @@ static bool tokenxchg(std::string &input, std::string::iterator &pos,
|
|||||||
for (int i = 0; i < cnt; i++)
|
for (int i = 0; i < cnt; i++)
|
||||||
{
|
{
|
||||||
std::string::iterator beg = tokend;
|
std::string::iterator beg = tokend;
|
||||||
if (*beg++ != '{') break;
|
if ((beg == input.end()) || (*beg++ != '{'))
|
||||||
|
break;
|
||||||
|
|
||||||
std::string::iterator end;
|
std::string::iterator end;
|
||||||
for (end = beg; end != input.end(); end++)
|
for (end = beg; end != input.end(); end++)
|
||||||
|
Reference in New Issue
Block a user