From: "Marco Costalba" <mcostalba@gmail.com>
To: "Junio C Hamano" <gitster@pobox.com>
Cc: "Git Mailing List" <git@vger.kernel.org>
Subject: [PATCH 1/6] Better error handling in compress_all()
Date: Fri, 11 Jan 2008 19:53:02 +0100 [thread overview]
Message-ID: <e5bfff550801111053v55fd2fc3ice97e6ae10c8f942@mail.gmail.com> (raw)
Also let the caller to xmalloc() the buffer
int compress_start()
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
---
This patch belong to the previous compression series,
not the decompression one that I'm publishing right now.
Anyhow next patches depends on this, so that's the reason
why is the first.
compress.c | 19 +++++++++----------
1 files changed, 9 insertions(+), 10 deletions(-)
diff --git a/compress.c b/compress.c
index be771a9..a8f46d5 100644
--- a/compress.c
+++ b/compress.c
@@ -12,7 +12,7 @@ int compress_start(z_stream *stream,
unsigned char *in, unsigned long in_size,
unsigned char *out, unsigned long out_size)
{
- stream->next_out = (out ? out : xmalloc(out_size));
+ stream->next_out = out;
stream->avail_out = out_size;
stream->next_in = in;
stream->avail_in = in_size;
@@ -36,19 +36,18 @@ unsigned long compress_free(z_stream
return stream->total_out;
}
-unsigned long compress_all(int level, unsigned char *data,
- unsigned long size, unsigned char **out)
+unsigned long compress_all(int level, unsigned char *in,
+ unsigned long in_size, unsigned char **out)
{
- int bound, result;
+ unsigned long out_size;
z_stream stream;
- bound = compress_alloc(&stream, level, size);
- compress_start(&stream, data, size, NULL, bound);
+ out_size = compress_alloc(&stream, level, in_size);
+ *out = xmalloc(out_size);
- *out = stream.next_out;
- result = compress_next(&stream, Z_FINISH);
-
- if (result != Z_STREAM_END) {
+ if ( compress_start(&stream, in, in_size, *out, out_size) != Z_OK
+ || compress_next(&stream, Z_FINISH) != Z_STREAM_END)
+ {
compress_free(&stream);
free(*out);
*out = NULL;
--
1.5.4.rc2.90.gf158-dirty
reply other threads:[~2008-01-11 18:54 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=e5bfff550801111053v55fd2fc3ice97e6ae10c8f942@mail.gmail.com \
--to=mcostalba@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).