memcpy -> memmove

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1278 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Branch: ni/coolstream
Commit: 85f5e1110d
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2011-03-09 (Wed, 09 Mar 2011)



------------------
This commit was generated by Migit
This commit is contained in:
Jacek Jendrzej
2011-03-09 12:55:31 +00:00
parent 9711d5d063
commit 23bcc01453
36 changed files with 134 additions and 134 deletions

View File

@@ -445,7 +445,7 @@ SIevent SIevent::readActualEvent(t_service_id serviceID, unsigned timeoutInSecon
}
// Den Header kopieren
memcpy(buf, &header, sizeof(header));
memmove(buf, &header, sizeof(header));
rc = readNbytes(fd, &buf[sizeof(header)], section_length - 5, timeoutInSeconds);
if(!rc) {