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 03:31:23 +0400
committerChristopher Faylor <me@cgf.cx>2004-10-18 03:31:23 +0400
commit0597641a7470e54d8aed7c6baa1082d5f2c0d7d9 (patch)
treed8af970b3aa298845dba411338c0375a77f4d767 /winsup/utils
parent167f0d851375bb0c21b39a315526866b7b7affd1 (diff)
* cygcheck.cc (pretty_id): Allocate space for trailing '\0' on uid and guid.
Diffstat (limited to 'winsup/utils')
-rw-r--r--winsup/utils/ChangeLog6
-rw-r--r--winsup/utils/cygcheck.cc8
2 files changed, 10 insertions, 4 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog
index 1462b316e..5e2e46046 100644
--- a/winsup/utils/ChangeLog
+++ b/winsup/utils/ChangeLog
@@ -1,6 +1,12 @@
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
+ guid.
+
+2004-10-15 Bas van Gompel <cygwin-patch.buzz@bavag.tmfweb.nl>
+ Christopher Faylor <cgf@timesys.com>
+
* cygcheck.cc (pretty_id): Don't exit on id error. Fix size
calculations.
diff --git a/winsup/utils/cygcheck.cc b/winsup/utils/cygcheck.cc
index 64130eeca..c5df4c379 100644
--- a/winsup/utils/cygcheck.cc
+++ b/winsup/utils/cygcheck.cc
@@ -814,10 +814,10 @@ pretty_id (const char *s, char *cygwin, size_t cyglen)
}
char **ng = groups - 1;
- size_t len_uid = strlen (uid);
- size_t len_gid = strlen (gid);
- *++ng = groups[0] = (char *) alloca (len_uid += sizeof ("UID: )") - 1);
- *++ng = groups[1] = (char *) alloca (len_gid += sizeof ("GID: )") - 1);
+ 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);
sprintf (groups[1], "GID: %s)", gid);
size_t sz = max (len_uid, len_gid);