Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liblongpath-rsync
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liblongpath
liblongpath-rsync
Commits
1f0610ef
Commit
1f0610ef
authored
Jan 11, 1999
by
David Dykstra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix segmentation fault when using -vvv. Suggested by assar@sics.se.
parent
379e689d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
main.c
main.c
+4
-4
No files found.
main.c
View file @
1f0610ef
...
...
@@ -171,7 +171,10 @@ static char *get_local_name(struct file_list *flist,char *name)
if
(
verbose
>
2
)
rprintf
(
FINFO
,
"get_local_name count=%d %s
\n
"
,
flist
->
count
,
name
);
flist
->
count
,
NS
(
name
));
if
(
!
name
)
return
NULL
;
if
(
do_stat
(
name
,
&
st
)
==
0
)
{
if
(
S_ISDIR
(
st
.
st_mode
))
{
...
...
@@ -192,9 +195,6 @@ static char *get_local_name(struct file_list *flist,char *name)
if
(
flist
->
count
==
1
)
return
name
;
if
(
!
name
)
return
NULL
;
if
(
do_mkdir
(
name
,
0777
&
~
orig_umask
)
!=
0
)
{
rprintf
(
FERROR
,
"mkdir %s : %s (1)
\n
"
,
name
,
strerror
(
errno
));
exit_cleanup
(
RERR_FILEIO
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment