- Disable paging file for Live CD.

svn path=/trunk/; revision=9618
This commit is contained in:
Filip Navara 2004-06-05 09:35:52 +00:00
parent f3f89873bd
commit 73dfa9e66a

View file

@ -1,4 +1,4 @@
/* $Id: init.c,v 1.54 2004/01/06 16:10:11 ekohl Exp $
/* $Id: init.c,v 1.55 2004/06/05 09:35:52 navaraf Exp $
*
* init.c - Session Manager initialization
*
@ -634,6 +634,14 @@ SmCreatePagingFiles(VOID)
RTL_QUERY_REGISTRY_TABLE QueryTable[2];
NTSTATUS Status;
/*
* Disable paging file on MiniNT/Live CD.
*/
if (RtlCheckRegistryKey(RTL_REGISTRY_CONTROL, L"MiniNT") == STATUS_SUCCESS)
{
return STATUS_SUCCESS;
}
RtlZeroMemory(&QueryTable,
sizeof(QueryTable));