Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
af632723
Commit
af632723
authored
Feb 27, 2010
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Kill warning.
parent
725f76a1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/misc/lua/libs/stream.c
modules/misc/lua/libs/stream.c
+2
-2
No files found.
modules/misc/lua/libs/stream.c
View file @
af632723
...
@@ -92,8 +92,8 @@ static int vlclua_memory_stream_new( lua_State *L )
...
@@ -92,8 +92,8 @@ static int vlclua_memory_stream_new( lua_State *L )
{
{
vlc_object_t
*
p_this
=
vlclua_get_this
(
L
);
vlc_object_t
*
p_this
=
vlclua_get_this
(
L
);
/* FIXME: duplicating the whole buffer is suboptimal. Keeping a reference to the string so that it doesn't get garbage collected would be better */
/* FIXME: duplicating the whole buffer is suboptimal. Keeping a reference to the string so that it doesn't get garbage collected would be better */
c
onst
c
har
*
psz_content
=
strdup
(
luaL_checkstring
(
L
,
1
)
);
char
*
psz_content
=
strdup
(
luaL_checkstring
(
L
,
1
)
);
stream_t
*
p_stream
=
stream_MemoryNew
(
p_this
,
psz_content
,
strlen
(
psz_content
),
false
);
stream_t
*
p_stream
=
stream_MemoryNew
(
p_this
,
(
uint8_t
*
)
psz_content
,
strlen
(
psz_content
),
false
);
return
vlclua_stream_new_inner
(
L
,
p_stream
);
return
vlclua_stream_new_inner
(
L
,
p_stream
);
}
}
...
...
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