Author: tkreuzer
Date: Thu Oct 22 16:08:11 2009
New Revision: 43686
URL:
http://svn.reactos.org/svn/reactos?rev=43686&view=rev
Log:
Don't truncate Processid to ULONG, spotted by Stefan.
Modified:
branches/ros-amd64-bringup/reactos/lib/rtl/debug.c
Modified: branches/ros-amd64-bringup/reactos/lib/rtl/debug.c
URL:
http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/lib/r…
==============================================================================
--- branches/ros-amd64-bringup/reactos/lib/rtl/debug.c [iso-8859-1] (original)
+++ branches/ros-amd64-bringup/reactos/lib/rtl/debug.c [iso-8859-1] Thu Oct 22 16:08:11
2009
@@ -328,7 +328,7 @@
/* Setup the symbol data */
SymbolInfo.BaseOfDll = Base;
- SymbolInfo.ProcessId = (ULONG)ProcessId;
+ SymbolInfo.ProcessId = ProcessId;
/* Get NT Headers */
NtHeader = RtlImageNtHeader(Base);
@@ -361,7 +361,7 @@
/* Setup the symbol data */
SymbolInfo.BaseOfDll = Base;
- SymbolInfo.ProcessId = (ULONG)ProcessId;
+ SymbolInfo.ProcessId = ProcessId;
SymbolInfo.CheckSum = SymbolInfo.SizeOfImage = 0;
/* Load the symbols */