Author: akhaldi
Date: Tue Sep 10 21:57:52 2013
New Revision: 60016
URL: http://svn.reactos.org/svn/reactos?rev=60016&view=rev
Log:
[NTOSKRNL]
* Return the proper status when we attempt to illegally commit non-ARM3 section. We hit this assert with some kernel32 winetests (mainly loader and virtual). Brought to you by Alex Ionescu.
Modified:
trunk/reactos/ntoskrnl/mm/ARM3/virtual.c
Modified: trunk/reactos/ntoskrnl/mm/ARM3/virtual.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/ARM3/virtual.c…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/ARM3/virtual.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/ARM3/virtual.c [iso-8859-1] Tue Sep 10 21:57:52 2013
@@ -4095,7 +4095,12 @@
// Make sure this is an ARM3 section
//
MemoryArea = MmLocateMemoryAreaByAddress(AddressSpace, (PVOID)PAGE_ROUND_DOWN(PBaseAddress));
- ASSERT(MemoryArea->Type == MEMORY_AREA_OWNED_BY_ARM3);
+ if (MemoryArea->Type != MEMORY_AREA_OWNED_BY_ARM3)
+ {
+ DPRINT1("Illegal commit of non-ARM3 section!\n");
+ Status = STATUS_ALREADY_COMMITTED;
+ goto FailPath;
+ }
// Is this a previously reserved section being committed? If so, enter the
// special section path
Author: tfaber
Date: Tue Sep 10 20:06:05 2013
New Revision: 60010
URL: http://svn.reactos.org/svn/reactos?rev=60010&view=rev
Log:
[CMAKE]
- Correctly escape error message. Spotted & tested by David Quintana
Modified:
trunk/reactos/cmake/CMakeMacros.cmake
Modified: trunk/reactos/cmake/CMakeMacros.cmake
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/cmake/CMakeMacros.cmake?re…
==============================================================================
--- trunk/reactos/cmake/CMakeMacros.cmake [iso-8859-1] (original)
+++ trunk/reactos/cmake/CMakeMacros.cmake [iso-8859-1] Tue Sep 10 20:06:05 2013
@@ -189,7 +189,7 @@
set(${var} 16)
elseif(${dir} STREQUAL reactos/system32/wbem)
set(${var} 17)
- else()
+ else()
message(FATAL_ERROR "Wrong destination: ${dir}")
endif()
endmacro()
@@ -207,7 +207,7 @@
endif()
if(NOT _CD_FOR)
- message(FATAL_ERROR "You must provide a cd name (or "all" for all of them) to install the file on!")
+ message(FATAL_ERROR "You must provide a cd name (or \"all\" for all of them) to install the file on!")
endif()
#get file if we need to
Author: dreimer
Date: Tue Sep 10 16:59:13 2013
New Revision: 60008
URL: http://svn.reactos.org/svn/reactos?rev=60008&view=rev
Log:
Woops, modified the Description to be a bit more helpful.
Modified:
trunk/reactos/base/applications/rapps/rapps/lautus.txt
Modified: trunk/reactos/base/applications/rapps/rapps/lautus.txt
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/rapps/ra…
==============================================================================
--- trunk/reactos/base/applications/rapps/rapps/lautus.txt [iso-8859-1] (original)
+++ trunk/reactos/base/applications/rapps/rapps/lautus.txt [iso-8859-1] Tue Sep 10 16:59:13 2013
@@ -4,7 +4,7 @@
Name = Lautus UXTheme
Version = 1.0
License = GPLv2
-Description = Theme made specially for ReactOS.
+Description = Theme made specially for ReactOS. Unzip in the "ReactOS" folder, then set the themeing service to "Automatic" and start it.
URLSite = http://www.reactos.org/forum/viewtopic.php?f=25&t=9293
Size = 341kB
Category = 15
@@ -12,4 +12,4 @@
CDPath = none
[Section.0407]
-Description = Theme, der speziell für ReactOS entwickelt wird.
+Description = Theme, der speziell für ReactOS entwickelt wird. Entpacken in das "ReactOS"-Verzeichnis, dann den Design Dienst auf "Automatisch" stellen und starten.