瀏覽代碼

COMP: Fix CMake dashboard warnings related to previous revisions.

David Cole 20 年之前
父節點
當前提交
a5d2c59c39
共有 3 個文件被更改,包括 7 次插入4 次删除
  1. 1 1
      Utilities/cmtar/extract.c
  2. 2 1
      Utilities/cmtar/output.c
  3. 4 2
      Utilities/cmtar/wrapper.c

+ 1 - 1
Utilities/cmtar/extract.c

@@ -149,7 +149,7 @@ tar_extract_file(TAR *t, char *realname)
 {
   int i;
   linkname_t *lnp;
-  char *pathname = 0;
+  char *pathname;
 
   if (t->options & TAR_NOOVERWRITE)
   {

+ 2 - 1
Utilities/cmtar/output.c

@@ -13,6 +13,7 @@
 #include <libtarint/internal.h>
 
 #include <stdio.h>
+#include <stdlib.h>
 
 #if !defined(_WIN32) || defined(__CYGWIN__)
 # include <pwd.h>
@@ -76,7 +77,7 @@ th_print_long_ls(TAR *t)
   char groupname[_POSIX_LOGIN_NAME_MAX];
   time_t mtime;
   struct tm *mtm;
-  char *pathname = 0;
+  char *pathname;
 
 #ifdef HAVE_STRFTIME
   char timebuf[18];

+ 4 - 2
Utilities/cmtar/wrapper.c

@@ -13,6 +13,8 @@
 #include <libtarint/internal.h>
 
 #include <stdio.h>
+#include <stdlib.h>
+
 #include <libtar/compat.h>
 #if defined(HAVE_SYS_PARAM_H)
 #include <sys/param.h>
@@ -39,7 +41,7 @@ tar_extract_glob(TAR *t, char *globname, char *prefix)
   char *filename;
   char buf[TAR_MAXPATHLEN];
   int i;
-  char *pathname = 0;
+  char *pathname;
 
   while ((i = th_read(t)) == 0)
   {
@@ -94,7 +96,7 @@ tar_extract_all(TAR *t, char *prefix)
   char *filename;
   char buf[TAR_MAXPATHLEN];
   int i;
-  char *pathname = 0;
+  char *pathname;
 
 #ifdef DEBUG
   printf("==> tar_extract_all(TAR *t, \"%s\")\n",