memcpy -> memmove

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1278 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
satbaby
2011-03-09 12:55:31 +00:00
parent 42fab7d679
commit 85f5e1110d
36 changed files with 134 additions and 134 deletions

View File

@@ -297,7 +297,7 @@ static void* reader_thread(void * /*arg*/)
buf = (uint8_t*) malloc(packlen);
memcpy(buf, tmp, 6);
memmove(buf, tmp, 6);
/* read rest of the packet */
while((count < packlen) && !dvbsub_stopped) {
len = dmx->Read(buf+count, packlen-count, 1000);