Merge pull request #10798 from akallabeth/kbd-remap-fix

[utils,string] fix freerdp_extract_key_value
This commit is contained in:
akallabeth 2024-10-29 17:20:52 +01:00 committed by GitHub
commit a7638bb0e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -112,10 +112,12 @@ BOOL freerdp_extract_key_value(const char* str, UINT32* pkey, UINT32* pvalue)
return FALSE;
char* end1 = NULL;
errno = 0;
unsigned long key = strtoul(str, &end1, 0);
if ((errno != 0) || !end1 || (*end1 != '=') || (key > UINT32_MAX))
return FALSE;
errno = 0;
unsigned long val = strtoul(&end1[1], NULL, 0);
if ((errno != 0) || (val > UINT32_MAX))
return FALSE;