[vlc-commits] qt: use vlc_alloc helper
Thomas Guillem
git at videolan.org
Sat Nov 11 19:00:14 CET 2017
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Sat Nov 11 18:47:22 2017 +0100| [f2cfa1119a62c8b286e34eac92433d31ffd18274] | committer: Thomas Guillem
qt: use vlc_alloc helper
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f2cfa1119a62c8b286e34eac92433d31ffd18274
---
modules/gui/qt/dialogs_provider.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt/dialogs_provider.cpp b/modules/gui/qt/dialogs_provider.cpp
index 92f1e17a3e..4f15bee9c0 100644
--- a/modules/gui/qt/dialogs_provider.cpp
+++ b/modules/gui/qt/dialogs_provider.cpp
@@ -388,7 +388,7 @@ void DialogsProvider::openFileGenericDialog( intf_dialog_args_t *p_arg )
if( !file.isEmpty() )
{
p_arg->i_results = 1;
- p_arg->psz_results = (char **)malloc( p_arg->i_results * sizeof( char * ) );
+ p_arg->psz_results = (char **)vlc_alloc( p_arg->i_results, sizeof( char * ) );
p_arg->psz_results[0] = strdup( qtu( toNativeSepNoSlash( file ) ) );
}
else
@@ -399,7 +399,7 @@ void DialogsProvider::openFileGenericDialog( intf_dialog_args_t *p_arg )
QStringList urls = getOpenURL( NULL, qfu( p_arg->psz_title ),
p_intf->p_sys->filepath, extensions );
p_arg->i_results = urls.count();
- p_arg->psz_results = (char **)malloc( p_arg->i_results * sizeof( char * ) );
+ p_arg->psz_results = (char **)vlc_alloc( p_arg->i_results, sizeof( char * ) );
i = 0;
foreach( const QString &uri, urls )
p_arg->psz_results[i++] = strdup( qtu( uri ) );
More information about the vlc-commits
mailing list