summaryrefslogtreecommitdiff
path: root/net-analyzer/tcpstat/files/tcpstat-1.5_p8-off-by-one.patch
blob: 4029ddb7d407c671a7c3440877506de348a03fa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
--- a/src/catpcap.c
+++ b/src/catpcap.c
@@ -156,10 +156,10 @@
 				return Usage(1, argv[0]);
 				break;
 			case 'f':
-				strncpy(filterexpr, optarg, BUF_SIZ);
+				strncpy(filterexpr, optarg, BUF_SIZ - 1);
 				break;
 			case 'r':
-				strncpy(filename, optarg, BUF_SIZ);
+				strncpy(filename, optarg, BUF_SIZ - 1);
 				break;
 			default:
 				return Usage(1, argv[0]);
--- a/src/dump.c
+++ b/src/dump.c
@@ -109,10 +109,10 @@
 				get_tcp_flags |= GET_TCPD_COUNT_LINKSIZE;
 				break;
 			case 'f':
-				strncpy(filterexpr, optarg, BUF_SIZ);
+				strncpy(filterexpr, optarg, BUF_SIZ - 1);
 				break;
 			case 'r':
-				strncpy(filename, optarg, BUF_SIZ);
+				strncpy(filename, optarg, BUF_SIZ - 1);
 				break;
 			case 's':
 				what_to_show |= parse_show_types(optarg);
--- a/src/tcpprof.c
+++ b/src/tcpprof.c
@@ -126,14 +126,14 @@
 				src_dest_split = 1;
 				break;
 			case 'f':
-				strncpy(filterexpr, optarg, BUF_SIZ);
+				strncpy(filterexpr, optarg, BUF_SIZ - 1);
 				break;
 			case 'i':
-				strncpy(filename, optarg, BUF_SIZ);
+				strncpy(filename, optarg, BUF_SIZ - 1);
 				flags |= GET_TCPD_DO_LIVE;
 				break;
 			case 'r':
-				strncpy(filename, optarg, BUF_SIZ);
+				strncpy(filename, optarg, BUF_SIZ - 1);
 				flags &= ~GET_TCPD_DO_LIVE;
 				break;
 			case 'n':