summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-12-21 21:51:51 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-12-21 21:51:51 (GMT)
commit8d712aafd2df3c1f5147a28947f98cefe667cf76 (patch)
tree66844d5d813bed6ce4f83e461d871defb658125c
parente4e79a217576d24ef4d73b620766f62b155bcd98 (diff)
parent8ac4838af428a2a32498b3e8d13295eb714654b4 (diff)
downloadgit-8d712aafd2df3c1f5147a28947f98cefe667cf76.zip
git-8d712aafd2df3c1f5147a28947f98cefe667cf76.tar.gz
git-8d712aafd2df3c1f5147a28947f98cefe667cf76.tar.bz2
GIT 1.0.0bv1.0.2v1.0.0b
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--Makefile2
-rw-r--r--debian/changelog6
-rw-r--r--quote.c6
-rw-r--r--server-info.c5
4 files changed, 15 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 7de4bbe..199cc47 100644
--- a/Makefile
+++ b/Makefile
@@ -55,7 +55,7 @@ all:
# Define USE_STDEV below if you want git to care about the underlying device
# change being considered an inode change from the update-cache perspective.
-GIT_VERSION = 1.0.0a
+GIT_VERSION = 1.0.0b
# CFLAGS and LDFLAGS are for the users to override from the command line.
diff --git a/debian/changelog b/debian/changelog
index adebba5..8dc86c5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+git-core (1.0.0b-0) unstable; urgency=low
+
+ * GIT 1.0.0b to include two more fixes.
+
+ -- Junio C Hamano <junkio@cox.net> Wed, 21 Dec 2005 13:50:21 -0800
+
git-core (1.0.0a-0) unstable; urgency=low
* GIT 1.0.0a to include the following fixes:
diff --git a/quote.c b/quote.c
index 76eb144..7218a70 100644
--- a/quote.c
+++ b/quote.c
@@ -126,8 +126,10 @@ static int quote_c_style_counted(const char *name, int namelen,
if (!no_dq)
EMIT('"');
- for (sp = name; (ch = *sp++) && (sp - name) <= namelen; ) {
-
+ for (sp = name; sp < name + namelen; sp++) {
+ ch = *sp;
+ if (!ch)
+ break;
if ((ch < ' ') || (ch == '"') || (ch == '\\') ||
(ch == 0177)) {
needquote = 1;
diff --git a/server-info.c b/server-info.c
index 6089765..05bce7d 100644
--- a/server-info.c
+++ b/server-info.c
@@ -99,7 +99,10 @@ static int read_pack_info_file(const char *infofile)
while (fgets(line, sizeof(line), fp)) {
int len = strlen(line);
if (line[len-1] == '\n')
- line[len-1] = 0;
+ line[--len] = 0;
+
+ if (!len)
+ continue;
switch (line[0]) {
case 'P': /* P name */