mirror of
https://github.com/pikami/st.git
synced 2025-04-08 18:51:47 +01:00
use memmove() instead of memcpy() in ttyread().
This commit is contained in:
parent
af75c433e5
commit
54bc450dbf
2
st.c
2
st.c
@ -630,7 +630,7 @@ ttyread(void) {
|
||||
}
|
||||
|
||||
/* keep any uncomplete utf8 char for the next call */
|
||||
memcpy(buf, ptr, buflen);
|
||||
memmove(buf, ptr, buflen);
|
||||
}
|
||||
|
||||
void
|
||||
|
Loading…
x
Reference in New Issue
Block a user