diff options
| author | 2010-12-27 01:30:53 +0000 | |
|---|---|---|
| committer | 2010-12-27 01:30:53 +0000 | |
| commit | 88dbe3435e6fad9aa52406ce10f878b7c583dcb7 (patch) | |
| tree | b8310ee692b7d52309aa52ae6eb0c8313aaddd26 /src/modules/dcc/video.cpp | |
| parent | More renaming & cleanup. (diff) | |
| download | KVIrc-88dbe3435e6fad9aa52406ce10f878b7c583dcb7.tar.gz KVIrc-88dbe3435e6fad9aa52406ce10f878b7c583dcb7.tar.bz2 KVIrc-88dbe3435e6fad9aa52406ce10f878b7c583dcb7.zip | |
Kill system memmove, ix86 asm and kvi_memmove stuff: modern gcc coupled to glibc can do better these times.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5235 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/dcc/video.cpp')
| -rw-r--r-- | src/modules/dcc/video.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/dcc/video.cpp b/src/modules/dcc/video.cpp index 896d7b98b..d7cb7e65b 100644 --- a/src/modules/dcc/video.cpp +++ b/src/modules/dcc/video.cpp @@ -266,7 +266,7 @@ bool KviDccVideoThread::handleIncomingData(KviDccThreadIncomingData * data,bool { // memmove the remaining part to the beginning // aux points after \n or \0 - kvi_memmove(data->buffer,aux,data->iLen); + KviMemory::move(data->buffer,aux,data->iLen); data->buffer = (char *)KviMemory::reallocate(data->buffer,data->iLen); end = data->buffer + data->iLen; aux = data->buffer; |
