Remove common_init and common_destroy. Use halloc instead.

darcs-hash:20060621095838-ac50b-e4349a0ab02696cead5397efce3792c9d56c2d15.gz
This commit is contained in:
axel
2006-06-21 19:58:38 +10:00
parent 3ddd5e5981
commit bf333f2a84
3 changed files with 1 additions and 28 deletions

View File

@@ -92,20 +92,6 @@ static struct winsize termsize;
*/
static string_buffer_t *setlocale_buff=0;
void common_destroy()
{
if( setlocale_buff )
{
sb_destroy( setlocale_buff );
free( setlocale_buff );
}
}
void common_init()
{
}
wchar_t **list_to_char_arr( array_list_t *l )
{
wchar_t ** res = malloc( sizeof(wchar_t *)*(al_get_count( l )+1) );
@@ -479,8 +465,7 @@ const wchar_t *wsetlocale(int category, const wchar_t *locale)
if( !setlocale_buff )
{
setlocale_buff = malloc( sizeof(string_buffer_t) );
sb_init( setlocale_buff);
setlocale_buff = sb_halloc( global_context);
}
sb_clear( setlocale_buff );