Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2004-10-18 05:44:55 +0400
committerChristopher Faylor <me@cgf.cx>2004-10-18 05:44:55 +0400
commit0ffa77a9f51c5c7d73da410534d9114a290370f5 (patch)
treea9374fa52a8e42ae39659dffc1e7ea61c582a2dd /winsup/utils
parent0597641a7470e54d8aed7c6baa1082d5f2c0d7d9 (diff)
* cygcheck.cc (pretty_id): Allocate space for ')' in uid and guid.
Diffstat (limited to 'winsup/utils')
-rw-r--r--winsup/utils/ChangeLog6
-rw-r--r--winsup/utils/cygcheck.cc4
2 files changed, 7 insertions, 3 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog
index 5e2e46046..c772fd59e 100644
--- a/winsup/utils/ChangeLog
+++ b/winsup/utils/ChangeLog
@@ -1,7 +1,11 @@
2004-10-15 Bas van Gompel <cygwin-patch.buzz@bavag.tmfweb.nl>
+
+ * cygcheck.cc (pretty_id): Allocate space for ')' in uid and guid.
+
+2004-10-15 Bas van Gompel <cygwin-patch.buzz@bavag.tmfweb.nl>
Christopher Faylor <cgf@timesys.com>
- * cygcheck.cc (pretty_id): Allocate space for trailing '\0' on uid and
+ * cygcheck.cc (pretty_id): Allocate space for trailing '\0' in uid and
guid.
2004-10-15 Bas van Gompel <cygwin-patch.buzz@bavag.tmfweb.nl>
diff --git a/winsup/utils/cygcheck.cc b/winsup/utils/cygcheck.cc
index c5df4c379..24f881e85 100644
--- a/winsup/utils/cygcheck.cc
+++ b/winsup/utils/cygcheck.cc
@@ -814,8 +814,8 @@ pretty_id (const char *s, char *cygwin, size_t cyglen)
}
char **ng = groups - 1;
- size_t len_uid = strlen ("UID: ") + strlen (uid);
- size_t len_gid = strlen ("GID: ") + strlen (gid);
+ size_t len_uid = strlen ("UID: )") + strlen (uid);
+ size_t len_gid = strlen ("GID: )") + strlen (gid);
*++ng = groups[0] = (char *) alloca (len_uid + 1);
*++ng = groups[1] = (char *) alloca (len_gid + 1);
sprintf (groups[0], "UID: %s)", uid);