Changeset 4fb2b3c in mod_gnutls for src/gnutls_io.c
- Timestamp:
- Sep 14, 2008, 12:40:15 PM (15 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, msva, proxy-ticket, upstream
- Children:
- 26b08fd
- Parents:
- 5021874
- git-author:
- Nikos Mavrogiannopoulos <nmav@…> (09/14/08 12:40:15)
- git-committer:
- Nokis Mavrogiannopoulos <nmav@…> (09/14/08 12:40:15)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_io.c
r5021874 r4fb2b3c 73 73 if (buffer->length > inl) { 74 74 /* we have have enough to fill the caller's buffer */ 75 mem cpy(in, buffer->value, inl);75 memmove(in, buffer->value, inl); 76 76 buffer->value += inl; 77 77 buffer->length -= inl; … … 79 79 else { 80 80 /* swallow remainder of the buffer */ 81 mem cpy(in, buffer->value, buffer->length);81 memmove(in, buffer->value, buffer->length); 82 82 inl = buffer->length; 83 83 buffer->value = NULL;
Note: See TracChangeset
for help on using the changeset viewer.