Skip to content
Snippets Groups Projects
Commit e2163396 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Guard against pathologically bad OO][ sequences.

parent bc6c3d4e
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #1642 passed
......@@ -303,7 +303,7 @@ static void getBlock(unsigned char **codeStr, char *menuBlock)
menuBlock[0]=0;
if(**codeStr=='_')
(*codeStr)++;
while(**codeStr != '_' && **codeStr != '|') {
while(**codeStr && **codeStr != '_' && **codeStr != '|') {
*(menuBlock++) = *((*codeStr)++);
*menuBlock=0;
}
......@@ -345,7 +345,7 @@ static int readSmallMenu(unsigned char *codeStr) {
int yy;
int zz;
unsigned char *origCodeStr=codeStr;
char buf[256];
char buf[260];
switch ((char)codeStr[0]) {
case 'a':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment