git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jerald Fitzjerald <jfj@freemail.gr>
To: git@vger.kernel.org
Cc: jfj@freemail.gr
Subject: [PATCH] missing return
Date: Wed, 30 May 2007 05:39:58 -0700	[thread overview]
Message-ID: <465D709E.7040402@freemail.gr> (raw)

OK for mainline?

---

diff --git a/base85.c b/base85.c
--- a/base85.c
+++ b/base85.c
@@ -66,7 +66,7 @@ int decode_85(char *dst, const char *buf
 		 */
 		if (0x03030303 < acc ||
 		    0xffffffff - de < (acc *= 85))
-			error("invalid base85 sequence %.5s", buffer-5);
+			return error("invalid base85 sequence %.5s", buffer-5);
 		acc += de;
 		say1(" %08x", acc);
 

             reply	other threads:[~2007-05-30 12:52 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-05-30 12:39 Jerald Fitzjerald [this message]
2007-05-30 17:24 ` [PATCH] missing return Junio C Hamano
2007-05-30 19:16   ` Jerald Fitzjerald

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=465D709E.7040402@freemail.gr \
    --to=jfj@freemail.gr \
    --cc=git@vger.kernel.org \
    /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).