Commit af632723 authored by Antoine Cellerier's avatar Antoine Cellerier

Kill warning.

parent 725f76a1
...@@ -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 */
const char * 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 );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment