mirror of
https://github.com/SDL-Hercules-390/hyperion.git
synced 2026-04-13 15:35:41 +02:00
Fix webserver scrambling of command input
This commit is contained in:
committed by
Fish (David B. Trout)
parent
76b31f5e21
commit
93c9f367ce
@@ -286,7 +286,7 @@ static char *http_unescape(char *buffer)
|
||||
|
||||
*pointer = (highnibble<<4) | lownibble;
|
||||
|
||||
memcpy(pointer+1, pointer+3, strlen(pointer+3)+1);
|
||||
memmove(pointer+1, pointer+3, strlen(pointer+3)+1);
|
||||
|
||||
pointer++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user