sys : rework seem fonctionnal (slow) and a correction start selection error

This commit is contained in:
2011-09-18 20:37:36 +02:00
parent 89394d5770
commit 9bad01fc37
6 changed files with 49 additions and 38 deletions

View File

@@ -422,7 +422,11 @@ static uint32_t Utf8_GetValue(UTF8Element_ts &Element)
int32_t strUtf8Len(const char *input_UTF8)
{
int32_t count = 0;
int32_t size = strlen(input_UTF8);
int32_t sizeInput = strlen(input_UTF8);
int32_t size = sizeInput;
if (size>20) {
EDN_DEBUG("check SIZE...");
}
uint8_t tmpSize;
bool baseValid;
while (size > 0) {