summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archival/tar.c2
-rw-r--r--coreutils/realpath.c2
-rw-r--r--util-linux/fdisk.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/archival/tar.c b/archival/tar.c
index 9dd74536e..5ddff7fa5 100644
--- a/archival/tar.c
+++ b/archival/tar.c
@@ -237,7 +237,7 @@ static int writeTarHeader(struct TarBallInfo *tbInfo,
237 struct tar_header_t header; 237 struct tar_header_t header;
238 238
239 memset(&header, 0, sizeof(header)); 239 memset(&header, 0, sizeof(header));
240 240
241 strncpy(header.name, header_name, sizeof(header.name)); 241 strncpy(header.name, header_name, sizeof(header.name));
242 242
243 /* POSIX says to mask mode with 07777. */ 243 /* POSIX says to mask mode with 07777. */
diff --git a/coreutils/realpath.c b/coreutils/realpath.c
index 90a71ed7d..3bc40ee04 100644
--- a/coreutils/realpath.c
+++ b/coreutils/realpath.c
@@ -23,7 +23,7 @@ int realpath_main(int argc UNUSED_PARAM, char **argv)
23 23
24 do { 24 do {
25 char *resolved_path = xmalloc_realpath(*argv); 25 char *resolved_path = xmalloc_realpath(*argv);
26 if (resolved_path != NULL) { 26 if (resolved_path != NULL) {
27 puts(resolved_path); 27 puts(resolved_path);
28 free(resolved_path); 28 free(resolved_path);
29 } else { 29 } else {
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c
index 7227a829e..aa718c787 100644
--- a/util-linux/fdisk.c
+++ b/util-linux/fdisk.c
@@ -2805,7 +2805,7 @@ list_devs_in_proc_partititons(void)
2805 &ma, &mi, &sz, ptname) != 4) 2805 &ma, &mi, &sz, ptname) != 4)
2806 continue; 2806 continue;
2807 for (s = ptname; *s; s++) 2807 for (s = ptname; *s; s++)
2808 continue; 2808 continue;
2809 /* note: excluding '0': e.g. mmcblk0 is not a partition name! */ 2809 /* note: excluding '0': e.g. mmcblk0 is not a partition name! */
2810 if (s[-1] >= '1' && s[-1] <= '9') 2810 if (s[-1] >= '1' && s[-1] <= '9')
2811 continue; 2811 continue;