Revert "security.c: buffer_read various fixes."
authorDaniel Stenberg <daniel@haxx.se>
Thu, 23 Sep 2010 22:20:02 +0000 (00:20 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 23 Sep 2010 22:20:02 +0000 (00:20 +0200)
This reverts commit fbb38de415b7bb7d743e53a7b4b887ffb12b3e5b.

lib/security.c

index cf0a6ff..693be3f 100644 (file)
@@ -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;
 }