mirror of
https://github.com/curl/curl.git
synced 2026-07-23 14:57:19 +03:00
Revert "security.c: buffer_read various fixes."
This reverts commit fbb38de415.
This commit is contained in:
parent
b1df37c60e
commit
a10f5b34ff
1 changed files with 4 additions and 6 deletions
|
|
@ -223,13 +223,11 @@ static CURLcode read_data(struct connectdata *conn,
|
|||
}
|
||||
|
||||
static size_t
|
||||
buffer_read(struct krb4buffer *buf, const char *data, size_t len)
|
||||
buffer_read(struct krb4buffer *buf, void *data, size_t len)
|
||||
{
|
||||
size_t buf_capacity = buf->size - buf->index;
|
||||
DEBUGASSERT(buf->size > buf->index);
|
||||
if(buf_capacity < len)
|
||||
len = buf_capacity;
|
||||
memcpy(buf, data, len);
|
||||
if(buf->size - buf->index < len)
|
||||
len = buf->size - buf->index;
|
||||
memcpy(data, (char*)buf->data + buf->index, len);
|
||||
buf->index += len;
|
||||
return len;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue