Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
08a325a3
Commit
08a325a3
authored
Dec 19, 2012
by
Vicent Marti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reflog: Actual error handling
parent
8a810441
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
src/reflog.c
+13
-5
No files found.
src/reflog.c
View file @
08a325a3
...
@@ -339,7 +339,7 @@ cleanup:
...
@@ -339,7 +339,7 @@ cleanup:
int
git_reflog_rename
(
git_reference
*
ref
,
const
char
*
new_name
)
int
git_reflog_rename
(
git_reference
*
ref
,
const
char
*
new_name
)
{
{
int
error
,
fd
;
int
error
=
0
,
fd
;
git_buf
old_path
=
GIT_BUF_INIT
;
git_buf
old_path
=
GIT_BUF_INIT
;
git_buf
new_path
=
GIT_BUF_INIT
;
git_buf
new_path
=
GIT_BUF_INIT
;
git_buf
temp_path
=
GIT_BUF_INIT
;
git_buf
temp_path
=
GIT_BUF_INIT
;
...
@@ -370,25 +370,33 @@ int git_reflog_rename(git_reference *ref, const char *new_name)
...
@@ -370,25 +370,33 @@ int git_reflog_rename(git_reference *ref, const char *new_name)
if
(
git_buf_joinpath
(
&
temp_path
,
git_buf_cstr
(
&
temp_path
),
"temp_reflog"
)
<
0
)
if
(
git_buf_joinpath
(
&
temp_path
,
git_buf_cstr
(
&
temp_path
),
"temp_reflog"
)
<
0
)
return
-
1
;
return
-
1
;
if
((
fd
=
git_futils_mktmp
(
&
temp_path
,
git_buf_cstr
(
&
temp_path
)))
<
0
)
if
((
fd
=
git_futils_mktmp
(
&
temp_path
,
git_buf_cstr
(
&
temp_path
)))
<
0
)
{
error
=
-
1
;
goto
cleanup
;
goto
cleanup
;
}
p_close
(
fd
);
p_close
(
fd
);
if
(
p_rename
(
git_buf_cstr
(
&
old_path
),
git_buf_cstr
(
&
temp_path
))
<
0
)
{
if
(
p_rename
(
git_buf_cstr
(
&
old_path
),
git_buf_cstr
(
&
temp_path
))
<
0
)
{
giterr_set
(
GITERR_OS
,
"Failed to rename reflog for %s"
,
new_name
);
giterr_set
(
GITERR_OS
,
"Failed to rename reflog for %s"
,
new_name
);
error
=
-
1
;
goto
cleanup
;
goto
cleanup
;
}
}
if
(
git_path_isdir
(
git_buf_cstr
(
&
new_path
))
&&
if
(
git_path_isdir
(
git_buf_cstr
(
&
new_path
))
&&
(
git_futils_rmdir_r
(
git_buf_cstr
(
&
new_path
),
NULL
,
GIT_RMDIR_SKIP_NONEMPTY
)
<
0
))
(
git_futils_rmdir_r
(
git_buf_cstr
(
&
new_path
),
NULL
,
GIT_RMDIR_SKIP_NONEMPTY
)
<
0
))
{
error
=
-
1
;
goto
cleanup
;
goto
cleanup
;
}
if
(
git_futils_mkpath2file
(
git_buf_cstr
(
&
new_path
),
GIT_REFLOG_DIR_MODE
)
<
0
)
if
(
git_futils_mkpath2file
(
git_buf_cstr
(
&
new_path
),
GIT_REFLOG_DIR_MODE
)
<
0
)
{
error
=
-
1
;
goto
cleanup
;
goto
cleanup
;
}
if
(
p_rename
(
git_buf_cstr
(
&
temp_path
),
git_buf_cstr
(
&
new_path
))
<
0
)
{
if
(
p_rename
(
git_buf_cstr
(
&
temp_path
),
git_buf_cstr
(
&
new_path
))
<
0
)
{
giterr_set
(
GITERR_OS
,
"Failed to rename reflog for %s"
,
new_name
);
giterr_set
(
GITERR_OS
,
"Failed to rename reflog for %s"
,
new_name
);
error
=
-
1
;
}
}
cleanup:
cleanup:
...
@@ -397,7 +405,7 @@ cleanup:
...
@@ -397,7 +405,7 @@ cleanup:
git_buf_free
(
&
new_path
);
git_buf_free
(
&
new_path
);
git_buf_free
(
&
normalized
);
git_buf_free
(
&
normalized
);
return
-
1
;
return
error
;
}
}
int
git_reflog_delete
(
git_reference
*
ref
)
int
git_reflog_delete
(
git_reference
*
ref
)
...
...
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