[NTOS]: My SVN is haunted. Commit missing changes?

svn path=/trunk/; revision=47869
This commit is contained in:
Sir Richard 2010-06-27 20:38:12 +00:00
parent 4c932f1485
commit dca7e2a102
2 changed files with 4 additions and 4 deletions

View file

@ -827,7 +827,7 @@ ExpInitializeExecutive(IN ULONG Cpu,
PCHAR CommandLine, PerfMem;
ULONG PerfMemUsed;
PLDR_DATA_TABLE_ENTRY NtosEntry;
PRTL_MESSAGE_RESOURCE_ENTRY MsgEntry;
PMESSAGE_RESOURCE_ENTRY MsgEntry;
ANSI_STRING CsdString;
SIZE_T Remaining = 0;
PCHAR RcEnd = NULL;
@ -1240,7 +1240,7 @@ Phase1InitializationDiscard(IN PVOID Context)
LARGE_INTEGER SystemBootTime, UniversalBootTime, OldTime, Timeout;
BOOLEAN SosEnabled, NoGuiBoot, ResetBias = FALSE, AlternateShell = FALSE;
PLDR_DATA_TABLE_ENTRY NtosEntry;
PRTL_MESSAGE_RESOURCE_ENTRY MsgEntry;
PMESSAGE_RESOURCE_ENTRY MsgEntry;
PCHAR CommandLine, Y2KHackRequired, SafeBoot, Environment;
PCHAR StringBuffer, EndBuffer, BeginBuffer, MpString = "";
PINIT_BUFFER InitBuffer;

View file

@ -458,12 +458,12 @@ KeGetBugMessageText(IN ULONG BugCheckCode,
for (i = 0; i < IdOffset; i++)
{
/* Advance in the Entries */
MessageEntry += ((PRTL_MESSAGE_RESOURCE_ENTRY)MessageEntry)->
MessageEntry += ((PMESSAGE_RESOURCE_ENTRY)MessageEntry)->
Length;
}
/* Get the final Code */
BugCode = ((PRTL_MESSAGE_RESOURCE_ENTRY)MessageEntry)->Text;
BugCode = ((PMESSAGE_RESOURCE_ENTRY)MessageEntry)->Text;
i = strlen(BugCode);
/* Handle newlines */