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
83885891
Commit
83885891
authored
Nov 04, 2012
by
Justin Spahr-Summers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bail out if remote->url would be NULL
This fixes a crash from attempting to invoke git__strdup() against NULL.
parent
1e99ce9a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
src/remote.c
+5
-0
No files found.
src/remote.c
View file @
83885891
...
...
@@ -131,6 +131,11 @@ int git_remote_load(git_remote **out, git_repository *repo, const char *name)
if
((
error
=
git_config_get_string
(
&
val
,
config
,
git_buf_cstr
(
&
buf
)))
<
0
)
goto
cleanup
;
if
(
!
val
)
{
error
=
-
1
;
goto
cleanup
;
}
remote
->
repo
=
repo
;
remote
->
url
=
git__strdup
(
val
);
...
...
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