Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
021d3cb9
Commit
021d3cb9
authored
May 26, 2008
by
Rémi Denis-Courmont
Browse files
C++ compile fixes
parent
e7b46c63
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/vlc_fixups.h
View file @
021d3cb9
...
...
@@ -32,7 +32,7 @@
static
inline
char
*
strdup
(
const
char
*
str
)
{
size_t
len
=
strlen
(
str
)
+
1
;
char
*
res
=
malloc
(
len
);
char
*
res
=
(
char
*
)
malloc
(
len
);
if
(
res
)
memcpy
(
res
,
str
,
len
);
return
res
;
}
...
...
@@ -45,7 +45,7 @@ static inline char *strdup (const char *str)
static
inline
int
vasprintf
(
char
**
strp
,
const
char
*
fmt
,
va_list
ap
)
{
int
len
=
vsnprintf
(
NULL
,
0
,
fmt
,
ap
)
+
1
;
char
*
res
=
malloc
(
len
);
char
*
res
=
(
char
*
)
malloc
(
len
);
if
(
res
==
NULL
)
return
-
1
;
*
strp
=
res
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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