Merge pull request #6128 from bkmit/development

Increase temporary variable size to fit utf-8 strings
This commit is contained in:
Theo Arends 2019-07-24 09:56:06 +02:00 committed by GitHub
commit eb53dbf48d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1115,7 +1115,7 @@ void HandleTemplateConfiguration(void)
return;
}
char stemp[20]; // Template number and Sensor name
char stemp[30]; // Template number and Sensor name
if (WebServer->hasArg("m")) {
WSContentBegin(200, CT_PLAIN);
@ -1242,7 +1242,7 @@ void HandleModuleConfiguration(void)
return;
}
char stemp[20]; // Sensor name
char stemp[30]; // Sensor name
uint8_t midx;
myio cmodule;
ModuleGpios(&cmodule);