(svn r1534) Use memmove() instead of memcpy() when copying overlapping memory (tamlin)

This commit is contained in:
tron 2005-01-16 11:04:45 +00:00
parent 58484ce6ee
commit 52c232844e

View File

@ -240,7 +240,7 @@ void DeleteWindow(Window *w)
v = --_last_window;
count = (byte*)v - (byte*)w;
memcpy(w, w + 1, count);
memmove(w, w + 1, count);
}
Window *FindWindowById(WindowClass cls, WindowNumber number)