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
2364735c
Commit
2364735c
authored
Nov 09, 2012
by
Philip Kelley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix implementation of strndup to not overrun
parent
0f674411
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
src/util.h
+6
-5
No files found.
src/util.h
View file @
2364735c
...
@@ -42,12 +42,11 @@ GIT_INLINE(char *) git__strdup(const char *str)
...
@@ -42,12 +42,11 @@ GIT_INLINE(char *) git__strdup(const char *str)
GIT_INLINE
(
char
*
)
git__strndup
(
const
char
*
str
,
size_t
n
)
GIT_INLINE
(
char
*
)
git__strndup
(
const
char
*
str
,
size_t
n
)
{
{
size_t
length
;
size_t
length
=
0
;
char
*
ptr
;
char
*
ptr
;
length
=
strlen
(
str
);
while
(
length
<
n
&&
str
[
length
])
if
(
n
<
length
)
++
length
;
length
=
n
;
ptr
=
(
char
*
)
malloc
(
length
+
1
);
ptr
=
(
char
*
)
malloc
(
length
+
1
);
if
(
!
ptr
)
{
if
(
!
ptr
)
{
...
@@ -55,7 +54,9 @@ GIT_INLINE(char *) git__strndup(const char *str, size_t n)
...
@@ -55,7 +54,9 @@ GIT_INLINE(char *) git__strndup(const char *str, size_t n)
return
NULL
;
return
NULL
;
}
}
memcpy
(
ptr
,
str
,
length
);
if
(
length
)
memcpy
(
ptr
,
str
,
length
);
ptr
[
length
]
=
'\0'
;
ptr
[
length
]
=
'\0'
;
return
ptr
;
return
ptr
;
...
...
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