Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
fdf35f26
Commit
fdf35f26
authored
May 23, 2008
by
Michael Niedermayer
Browse files
make av_strdup(NULL) return NULL
Originally committed as revision 13250 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
30897e76
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
libavutil/mem.c
libavutil/mem.c
+3
-1
No files found.
libavutil/mem.c
View file @
fdf35f26
...
...
@@ -139,11 +139,13 @@ void *av_mallocz(unsigned int size)
char
*
av_strdup
(
const
char
*
s
)
{
char
*
ptr
;
char
*
ptr
=
NULL
;
if
(
s
){
int
len
=
strlen
(
s
)
+
1
;
ptr
=
av_malloc
(
len
);
if
(
ptr
)
memcpy
(
ptr
,
s
,
len
);
}
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