mirror of
https://git.savannah.gnu.org/git/tar.git
synced 2026-09-06 08:16:54 +00:00
Avoid compiler warnings.
* src/list.c (read_header_primitive): Define two locals, to avoid incorrect "may be used uninitialized" warnings. * src/incremen.c (procdir): Remove decl of unused local, "len". expired. SCALAR(0x830b08c)
This commit is contained in:
@@ -336,7 +336,6 @@ procdir (char *name_buffer, struct stat *stat_data,
|
||||
|
||||
{
|
||||
const char *tag_file_name;
|
||||
size_t len;
|
||||
|
||||
switch (check_exclusion_tags (name_buffer, &tag_file_name))
|
||||
{
|
||||
|
||||
+2
-2
@@ -301,8 +301,8 @@ read_header_primitive (bool raw_extended_headers, struct tar_stat_info *info)
|
||||
size_t size, written;
|
||||
union block *next_long_name = 0;
|
||||
union block *next_long_link = 0;
|
||||
size_t next_long_name_blocks;
|
||||
size_t next_long_link_blocks;
|
||||
size_t next_long_name_blocks = 0;
|
||||
size_t next_long_link_blocks = 0;
|
||||
|
||||
while (1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user