ntdll: Remove unused function.

This commit is contained in:
Andrew Talbot 2007-01-13 20:34:13 +00:00 committed by Alexandre Julliard
parent 338100c255
commit 16cb898600
1 changed files with 0 additions and 15 deletions

View File

@ -87,21 +87,6 @@ static inline NTSTATUS init_teb( TEB *teb )
}
/***********************************************************************
* free_teb
*/
static inline void free_teb( TEB *teb )
{
SIZE_T size = 0;
void *addr = teb;
struct ntdll_thread_regs *thread_regs = (struct ntdll_thread_regs *)teb->SpareBytes1;
NtFreeVirtualMemory( NtCurrentProcess(), &addr, &size, MEM_RELEASE );
wine_ldt_free_fs( thread_regs->fs );
munmap( teb, sigstack_total_size );
}
/***********************************************************************
* fix_unicode_string
*