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

Dead code

parent e056b580
...@@ -93,7 +93,6 @@ void msg_Destroy (msg_bank_t *); ...@@ -93,7 +93,6 @@ void msg_Destroy (msg_bank_t *);
void msg_StackSet ( int, const char*, ... ); void msg_StackSet ( int, const char*, ... );
void msg_StackAdd ( const char*, ... ); void msg_StackAdd ( const char*, ... );
const char* msg_StackMsg ( void ); const char* msg_StackMsg ( void );
void msg_StackDestroy (void *);
/* /*
* Unicode stuff * Unicode stuff
......
...@@ -538,14 +538,6 @@ static msg_context_t* GetContext(void) ...@@ -538,14 +538,6 @@ static msg_context_t* GetContext(void)
return p_ctx; return p_ctx;
} }
void msg_StackDestroy (void *data)
{
msg_context_t *p_ctx = data;
free (p_ctx->psz_message);
free (p_ctx);
}
void msg_StackSet( int i_code, const char *psz_message, ... ) void msg_StackSet( int i_code, const char *psz_message, ... )
{ {
va_list ap; va_list ap;
......
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