Commit 8b66dc63 authored by Petri Hintukainen's avatar Petri Hintukainen Committed by Jean-Baptiste Kempf

Update: Fix return value

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 690711f5
......@@ -1013,7 +1013,7 @@ int download_signature( vlc_object_t *p_this, signature_packet_t *p_sig,
if( stream_GetSize( p_stream, &i_size ) || i_size > INT_MAX )
{
stream_Delete( p_stream );
return NULL;
return VLC_EGENERIC;
}
msg_Dbg( p_this, "Downloading signature (%"PRIu64" bytes)", i_size );
......
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