mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-08-13 05:32:19 +02:00
update comment re power of 2
This commit is contained in:
+3
-1
@@ -46,7 +46,9 @@
|
||||
char *
|
||||
xreadlink (char const *filename, size_t *link_length_arg)
|
||||
{
|
||||
size_t buf_size = 128; /* must be a power of 2 */
|
||||
/* The initial buffer size for the link value. A power of 2
|
||||
detects arithmetic overflow earlier, but is not required. */
|
||||
size_t buf_size = 128;
|
||||
char *buffer = NULL;
|
||||
|
||||
while (1)
|
||||
|
||||
Reference in New Issue
Block a user