mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-02 02:11:11 +02:00
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:
@@ -87,7 +87,7 @@ int fh_gif_load(const char *name,unsigned char **buffer,int* /*xp*/,int* /*yp*/)
|
||||
{
|
||||
if(DGifGetLine(gft,slb,px)==GIF_ERROR) mgrflush;
|
||||
m_rend_gif_decodecolormap(slb,lb,cmap,cmaps,px);
|
||||
memcpy(fbptr,lb,px*3);
|
||||
memmove(fbptr,lb,px*3);
|
||||
}
|
||||
}
|
||||
else
|
||||
@@ -99,7 +99,7 @@ int fh_gif_load(const char *name,unsigned char **buffer,int* /*xp*/,int* /*yp*/)
|
||||
{
|
||||
if(DGifGetLine(gft,slb,px)==GIF_ERROR) mgrflush;
|
||||
m_rend_gif_decodecolormap(slb,lb,cmap,cmaps,px);
|
||||
memcpy(fbptr,lb,px*3);
|
||||
memmove(fbptr,lb,px*3);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user