mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-02 08:42:48 +00:00
The parser for Rockridge symlinks tended to insert
extra slashes at the beginning of absolute targets. Thanks to Jung-uk Kim for pointing this out to me. Approved by: re (kib)
This commit is contained in:
parent
47a490cbbc
commit
33fe28bbcd
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=195895
@ -1175,12 +1175,12 @@ static void
|
||||
parse_rockridge_SL1(struct file_info *file, const unsigned char *data,
|
||||
int data_length)
|
||||
{
|
||||
int component_continues = 1;
|
||||
const char *separator = "";
|
||||
|
||||
if (!file->symlink_continues)
|
||||
if (!file->symlink_continues || file->symlink.length < 1)
|
||||
archive_string_empty(&file->symlink);
|
||||
else
|
||||
archive_strcat(&file->symlink, "/");
|
||||
else if (file->symlink.s[file->symlink.length - 1] != '/')
|
||||
separator = "/";
|
||||
file->symlink_continues = 0;
|
||||
|
||||
/*
|
||||
@ -1217,9 +1217,8 @@ parse_rockridge_SL1(struct file_info *file, const unsigned char *data,
|
||||
unsigned char nlen = *data++;
|
||||
data_length -= 2;
|
||||
|
||||
if (!component_continues)
|
||||
archive_strcat(&file->symlink, "/");
|
||||
component_continues = 0;
|
||||
archive_strcat(&file->symlink, separator);
|
||||
separator = "/";
|
||||
|
||||
switch(flag) {
|
||||
case 0: /* Usual case, this is text. */
|
||||
@ -1233,7 +1232,7 @@ parse_rockridge_SL1(struct file_info *file, const unsigned char *data,
|
||||
return;
|
||||
archive_strncat(&file->symlink,
|
||||
(const char *)data, nlen);
|
||||
component_continues = 1;
|
||||
separator = "";
|
||||
break;
|
||||
case 0x02: /* Current dir. */
|
||||
archive_strcat(&file->symlink, ".");
|
||||
@ -1244,6 +1243,7 @@ parse_rockridge_SL1(struct file_info *file, const unsigned char *data,
|
||||
case 0x08: /* Root of filesystem. */
|
||||
archive_string_empty(&file->symlink);
|
||||
archive_strcat(&file->symlink, "/");
|
||||
separator = "";
|
||||
break;
|
||||
case 0x10: /* Undefined (historically "volume root" */
|
||||
archive_string_empty(&file->symlink);
|
||||
|
Loading…
Reference in New Issue
Block a user