[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/8] mbuffers: Make _mbuffer_remove_bytes return a meaningful err
From: |
Jonathan Bastien-Filiatrault |
Subject: |
[PATCH 2/8] mbuffers: Make _mbuffer_remove_bytes return a meaningful error code. |
Date: |
Wed, 8 Sep 2010 18:34:41 -0400 |
Signed-off-by: Jonathan Bastien-Filiatrault <address@hidden>
diff --git a/lib/gnutls_mbuffers.c b/lib/gnutls_mbuffers.c
index 630f53a..7ebcc40 100644
--- a/lib/gnutls_mbuffers.c
+++ b/lib/gnutls_mbuffers.c
@@ -186,7 +186,10 @@ _mbuffer_remove_bytes (mbuffer_head_st *buf, size_t bytes)
mbuffer_st *bufel, *next;
if (bytes > buf->byte_length)
- return -1;
+ {
+ gnutls_assert ();
+ return GNUTLS_E_INVALID_REQUEST;
+ }
for (bufel = buf->head; bufel != NULL && left > 0; bufel = next)
{
--
1.7.1
- [PATCH] Read-side mbuffers, Jonathan Bastien-Filiatrault, 2010/09/08
- [PATCH 1/8] mbuffers: Document the internal mbuffer API., Jonathan Bastien-Filiatrault, 2010/09/08
- [PATCH 2/8] mbuffers: Make _mbuffer_remove_bytes return a meaningful error code.,
Jonathan Bastien-Filiatrault <=
- [PATCH 3/8] mbuffers: fix wrong size calculation., Jonathan Bastien-Filiatrault, 2010/09/08
- [PATCH 5/8] Parenthesize size calculations., Jonathan Bastien-Filiatrault, 2010/09/08
- [PATCH 4/8] mbuffers: Add mbuffer_linearize., Jonathan Bastien-Filiatrault, 2010/09/08
- [PATCH 6/8] mbuffers: make _gnutls_io_read_buffered use mbuffers., Jonathan Bastien-Filiatrault, 2010/09/08
- [PATCH 8/8] Fully mbufferize _gnutls_read and _gnutls_read_buffered., Jonathan Bastien-Filiatrault, 2010/09/08
- [PATCH 7/8] mbuffers: Add _mbuffer_xfree operation., Jonathan Bastien-Filiatrault, 2010/09/08
- Re: [PATCH] Read-side mbuffers, Nikos Mavrogiannopoulos, 2010/09/09