Commit b855dc8d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Don't assert that something that can fail won't fail...

parent b8fb4bc1
...@@ -618,7 +618,9 @@ void msg_StackSet( int i_code, const char *psz_message, ... ) ...@@ -618,7 +618,9 @@ void msg_StackSet( int i_code, const char *psz_message, ... )
{ {
va_list ap; va_list ap;
msg_context_t *p_ctx = GetContext(); msg_context_t *p_ctx = GetContext();
assert( p_ctx );
if( p_ctx == NULL )
return;
va_start( ap, psz_message ); va_start( ap, psz_message );
free( p_ctx->psz_message ); free( p_ctx->psz_message );
...@@ -635,7 +637,9 @@ void msg_StackAdd( const char *psz_message, ... ) ...@@ -635,7 +637,9 @@ void msg_StackAdd( const char *psz_message, ... )
char *psz_tmp; char *psz_tmp;
va_list ap; va_list ap;
msg_context_t *p_ctx = GetContext(); msg_context_t *p_ctx = GetContext();
assert( p_ctx );
if( p_ctx == NULL )
return;
va_start( ap, psz_message ); va_start( ap, psz_message );
if( vasprintf( &psz_tmp, psz_message, ap ) == -1 ) if( vasprintf( &psz_tmp, psz_message, ap ) == -1 )
......
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