* cygcheck.cc (pretty_id): Allocate space for trailing '\0' on uid and guid.
This commit is contained in:
parent
167f0d8513
commit
0597641a74
|
@ -1,3 +1,9 @@
|
||||||
|
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>
|
2004-10-15 Bas van Gompel <cygwin-patch.buzz@bavag.tmfweb.nl>
|
||||||
Christopher Faylor <cgf@timesys.com>
|
Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
|
|
|
@ -814,10 +814,10 @@ pretty_id (const char *s, char *cygwin, size_t cyglen)
|
||||||
}
|
}
|
||||||
|
|
||||||
char **ng = groups - 1;
|
char **ng = groups - 1;
|
||||||
size_t len_uid = strlen (uid);
|
size_t len_uid = strlen ("UID: ") + strlen (uid);
|
||||||
size_t len_gid = strlen (gid);
|
size_t len_gid = strlen ("GID: ") + strlen (gid);
|
||||||
*++ng = groups[0] = (char *) alloca (len_uid += sizeof ("UID: )") - 1);
|
*++ng = groups[0] = (char *) alloca (len_uid + 1);
|
||||||
*++ng = groups[1] = (char *) alloca (len_gid += sizeof ("GID: )") - 1);
|
*++ng = groups[1] = (char *) alloca (len_gid + 1);
|
||||||
sprintf (groups[0], "UID: %s)", uid);
|
sprintf (groups[0], "UID: %s)", uid);
|
||||||
sprintf (groups[1], "GID: %s)", gid);
|
sprintf (groups[1], "GID: %s)", gid);
|
||||||
size_t sz = max (len_uid, len_gid);
|
size_t sz = max (len_uid, len_gid);
|
||||||
|
|
Loading…
Reference in New Issue