summaryrefslogtreecommitdiff
path: root/core/libaio/libaio-0.3.111-sizeof-template.patch
blob: 5eee895806f2043167f82bdbf2b62984ebcfeb6d (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
diff -rauN libaio-0.3.111/harness/cases/19.t libaio-0.3.111-sizeof-template-patch/harness/cases/19.t
--- libaio-0.3.111/harness/cases/19.t	2018-03-06 23:24:47.000000000 +0100
+++ libaio-0.3.111-sizeof-template-patch/harness/cases/19.t	2018-10-14 10:02:19.004873314 +0200
@@ -41,7 +41,7 @@
 	int fd;
 	char template[sizeof(TEMPLATE)];
 
-	strncpy(template, TEMPLATE, sizeof(TEMPLATE));
+	strncpy(template, TEMPLATE, sizeof(template));
 	fd = mkostemp(template, O_DIRECT);
 	if (fd < 0) {
 		perror("mkstemp");
diff -rauN libaio-0.3.111/harness/cases/21.t libaio-0.3.111-sizeof-template-patch/harness/cases/21.t
--- libaio-0.3.111/harness/cases/21.t	2018-03-06 23:24:47.000000000 +0100
+++ libaio-0.3.111-sizeof-template-patch/harness/cases/21.t	2018-10-14 10:02:34.901333421 +0200
@@ -43,7 +43,7 @@
 	int fd;
 	char temp_file[sizeof(TEMPLATE)];
 
-	strncpy(temp_file, TEMPLATE, sizeof(TEMPLATE));
+	strncpy(temp_file, TEMPLATE, sizeof(temp_file));
 	fd = mkstemp(temp_file);
 	if (fd < 0) {
 		perror("mkstemp");