mirror of
https://git.freebsd.org/ports.git
synced 2025-07-11 06:19:19 -04:00
16 lines
564 B
C
16 lines
564 B
C
--- lang/tcl/tcl_seq.c.orig 2016-05-24 08:18:03 UTC
|
|
+++ lang/tcl/tcl_seq.c
|
|
@@ -555,9 +555,10 @@ tcl_SeqGetFlags(interp, objc, objv, seq)
|
|
for (i = 0; seq_flags[i].flag != 0; i++)
|
|
if (LF_ISSET(seq_flags[i].flag)) {
|
|
if (strlen(buf) > 0)
|
|
- (void)strncat(buf, " ", sizeof(buf));
|
|
- (void)strncat(
|
|
- buf, seq_flags[i].arg, sizeof(buf));
|
|
+ (void)strncat(buf, " ",
|
|
+ sizeof(buf) - (strlen(buf) + 1));
|
|
+ (void)strncat(buf, seq_flags[i].arg,
|
|
+ sizeof(buf) - (strlen(buf) + 1));
|
|
}
|
|
|
|
res = NewStringObj(buf, strlen(buf));
|