Commit 81f37d39 authored by Rémi Duraffort's avatar Rémi Duraffort

Better asprintf error handling

parent c2598291
...@@ -1060,56 +1060,72 @@ void update_DownloadReal( update_download_thread_t *p_udt ) ...@@ -1060,56 +1060,72 @@ void update_DownloadReal( update_download_thread_t *p_udt )
l_size = stream_Size( p_stream ); l_size = stream_Size( p_stream );
psz_tmpdestfile = strrchr( p_update->release.psz_url, '/' ); psz_tmpdestfile = strrchr( p_update->release.psz_url, '/' );
psz_tmpdestfile++; if( !psz_tmpdestfile )
asprintf( &psz_destfile, "%s%s", psz_destdir, psz_tmpdestfile );
p_file = utf8_fopen( psz_destfile, "w" );
if( !p_file )
{ {
msg_Err( p_update->p_libvlc, "Failed to open %s for writing", psz_destfile ); msg_Err( p_update->p_libvlc, "The URL %s is false formated", p_update->release.psz_url );
return;
} }
else else
{ {
/* Create a buffer and fill it with the downloaded file */ psz_tmpdestfile++;
p_buffer = (void *)malloc( 1 << 10 ); if( asprintf( &psz_destfile, "%s%s", psz_destdir, psz_tmpdestfile ) != -1 )
if( p_buffer )
{ {
psz_size = size_str( l_size ); p_file = utf8_fopen( psz_destfile, "w" );
asprintf( &psz_status, "%s\nDownloading... O.O/%s %.1f%% done", p_update->release.psz_url, psz_size, 0.0 ); if( !p_file )
i_progress = intf_UserProgress( p_update->p_libvlc, "Downloading ...", psz_status, 0.0, 0 );
free( psz_status );
while( ( i_read = stream_Read( p_stream, p_buffer, 1 << 10 ) ) &&
!intf_ProgressIsCancelled( p_update->p_libvlc, i_progress ) )
{ {
fwrite( p_buffer, i_read, 1, p_file ); msg_Err( p_update->p_libvlc, "Failed to open %s for writing", psz_destfile );
l_downloaded += i_read;
psz_downloaded = size_str( l_downloaded );
asprintf( &psz_status, "%s\nDonwloading... %s/%s %.1f%% done", p_update->release.psz_url,
psz_size, psz_downloaded, 100.0*(float)l_downloaded/(float)l_size );
intf_ProgressUpdate( p_update->p_libvlc, i_progress, psz_status, 10.0, 0 );
free( psz_downloaded );
free( psz_status );
} }
else
/* If the user cancelled the download */
if( !intf_ProgressIsCancelled( p_update->p_libvlc, i_progress ) )
{ {
asprintf( &psz_status, "%s\nDone %s (100.0%%)", p_update->release.psz_url, psz_size ); /* Create a buffer and fill it with the downloaded file */
intf_ProgressUpdate( p_update->p_libvlc, i_progress, psz_status, 100.0, 0 ); p_buffer = (void *)malloc( 1 << 10 );
free( psz_status ); if( p_buffer )
{
psz_size = size_str( l_size );
if( asprintf( &psz_status, "%s\nDownloading... O.O/%s %.1f%% done", p_update->release.psz_url, psz_size, 0.0 ) != -1 )
{
i_progress = intf_UserProgress( p_update->p_libvlc, "Downloading ...", psz_status, 0.0, 0 );
free( psz_status );
}
while( ( i_read = stream_Read( p_stream, p_buffer, 1 << 10 ) ) &&
!intf_ProgressIsCancelled( p_update->p_libvlc, i_progress ) )
{
fwrite( p_buffer, i_read, 1, p_file );
l_downloaded += i_read;
psz_downloaded = size_str( l_downloaded );
if( asprintf( &psz_status, "%s\nDonwloading... %s/%s %.1f%% done", p_update->release.psz_url,
psz_size, psz_downloaded, 100.0*(float)l_downloaded/(float)l_size ) != -1 )
{
intf_ProgressUpdate( p_update->p_libvlc, i_progress, psz_status, 10.0, 0 );
free( psz_status );
}
free( psz_downloaded );
}
free( p_buffer );
/* If the user cancelled the download */
if( !intf_ProgressIsCancelled( p_update->p_libvlc, i_progress ) )
{
if( asprintf( &psz_status, "%s\nDone %s (100.0%%)", p_update->release.psz_url, psz_size ) != -1 )
{
intf_ProgressUpdate( p_update->p_libvlc, i_progress, psz_status, 100.0, 0 );
free( psz_status );
}
}
free( psz_size );
}
fclose( p_file );
if( intf_ProgressIsCancelled( p_update->p_libvlc, i_progress ) )
remove( psz_destfile );
} }
free( p_buffer ); free( psz_destfile );
free( psz_size );
} }
fclose( p_file );
if( intf_ProgressIsCancelled( p_update->p_libvlc, i_progress ) )
remove( psz_destfile );
} }
stream_Delete( p_stream );
} }
free( psz_destdir ); free( psz_destdir );
stream_Delete( p_stream );
} }
#endif #endif
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